Table of Contents
One day while I was sitting by my desk, I pondered about the next project I wanted to make, I started to think about the various topics I wanted to work on and two things came to mind, Agents and a personal interest. I began to think about what in my life could use and benefit from an AI Agent powered by an LLM, and thought of one thing immediately, anime. I then decided my project would be an AI Anime helper, fitted with several tools that would help anyone curious about various aspects of anime have a one-stop shop that would elimnate the need of having to do in depth research themselves, or go down rabbit holes they would not want to or have the time to go down. I hope you enjoy, and please feel free to leave any issue you have so I can improve this tool, thank you!
- User Authentication!
- Agent Chatbot!
- Image Input Support!
- Device Chat Sync!
- Chat Export!
- Chat History Clear!
To get a local copy of Weeaboo-Buddy up and running locally follow these steps:
- Make sure you have Python installed and use Python3 version 3.12
NOTE: You can check if Python is installed and its version withpython -V | python --version
- Make sure you have Git installed
NOTE: You can check if Git is installed and its version withgit -v | git --version
- Navigate to the directory where you want to clone/run/save the application:
cd example_directory
- Clone the repository:
git clone https://github.com/drod75/Weeaboo-Buddy.git
- Navigate to the project directory:
cd Weeaboo-Buddy
- Next, create a Python virtual environment in the cloned project directory:
python3.12 -m venv .venv
- Activate the virtual environment (Windows OR Mac/Linux):
- Windows
.\.venv\Scripts\activate
- Mac/Linux
source .venv/bin/activate
- Windows
- Install the python dependencies:
pip install -r requirements.txt
- Set up a Gemini API key:
- Inside the root directory, create a
.env
file. Inside the.env
file, write:GOOGLE_API_KEY = "your-api-key"
- Replace
your-api-key
with your Gemini API key.
- Inside the root directory, create a
- Set up a Supabase API key and URL:
- Inside the root directory, create a
.env
file. Inside the.env
file, write:SUPABASE_KEY = "your-api-key" SUPABASE_URL = "your-url"
- Replace
your-api-key
/your-url
with your supabase credentials.
- Inside the root directory, create a
- Set up a MongoDB URI:
- Inside the root directory, create a
.env
file. Inside the.env
file, write:MONGO_URI = "your-uri"
- Replace
your-uri
with your Mongo URI.
- Inside the root directory, create a
- Set up a Taviliy API key:
- Inside the root directory, create a
.env
file. Inside the.env
file, write:TAVILY_API_KEY = "your-api-key"
- Replace
your-api-key
with your Tavily API key.
- Inside the root directory, create a
-
Run the application:
# activate backend server streamlit run app.py
-
Options:
- Log In/Register
- Chat with the Agent
- See user chat details
- Change user details
A video to how the site works, and every feature that is stable and available so far is listed below! Demo Link
We like open-source and want to develop practical applications for real-world problems. However, individual strength is limited. So, any kinds of contribution is welcome, such as:
- New features
- Bug fixes
- Typo fixes
- Suggestions
- Maintenance
- Documents
- etc.
- Fork the repository
- Create a new feature branch
- Commit your changes
- Push to the branch
- Submit a pull request
MIT License
Copyright (c) 2025 David Rodriguez
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.