You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
755 B
29 lines
755 B
# Meme Agent Builder
|
|
|
|
- `pip3 install -U swarms`
|
|
- Add your OpenAI API key to the `.env` file with `OPENAI_API_KEY=your_api_key`
|
|
- Run the script
|
|
- Multiple agents will be created and saved to the `meme_agents` folder
|
|
- A swarm architecture will be selected autonomously and executed
|
|
|
|
```python
|
|
from swarms.structs.meme_agent_persona_generator import (
|
|
MemeAgentGenerator,
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
example = MemeAgentGenerator(
|
|
name="Meme-Swarm",
|
|
description="A swarm of specialized AI agents collaborating on generating and sharing memes around cool media from 2001s",
|
|
max_loops=1,
|
|
)
|
|
|
|
print(
|
|
example.run(
|
|
"Generate funny meme agents around cool media from 2001s"
|
|
)
|
|
)
|
|
|
|
```
|