memechain/README.md

27 lines
425 B
Markdown

# memechain
So the idea here is to make an llm agent with tools that use https://imgflip.com/api to turn natural language into a meme.
## Setup
```bash
python -m venv env
source env/bin/activate
```
```bash
pip install -r requirements.txt
```
Update config.json with your imgflip username and password.
Example:
```json
{
"username": "your_username",
"password": "your_password"
}
```
```bash
python main.py
```