AgentVerse-AI is a lightweight, multimodal AI agent framework designed for rapid agent creation with support for memory, tools, RAG, and team-based orchestration.
pip install agentverse-ai
from agentverse_ai.agent import Agent
agent = Agent(name="Researcher", model="openai/gpt-4")
agent.print_response("Summarize the state of AI research in 2024.")
libs/ └── agentverse_ai/ ├── agent/ ├── memory/ ├── models/ ├── tools/ └── vectordb/
You can explore a fully working CLI app example using AgentVerse called NeuroPilot.
MIT License. Contributions welcome! Please see CONTRIBUTING.md
in the repository.
Emmanuel Ebekue