📘 AgentVerse-AI

AgentVerse-AI is a lightweight, multimodal AI agent framework designed for rapid agent creation with support for memory, tools, RAG, and team-based orchestration.

🚀 Features

📦 Installation

pip install agentverse-ai

🔧 Getting Started

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.")

📂 Project Structure

libs/
└── agentverse_ai/
    ├── agent/
    ├── memory/
    ├── models/
    ├── tools/
    └── vectordb/

🧠 Example App: NeuroPilot

You can explore a fully working CLI app example using AgentVerse called NeuroPilot.

💬 License & Contributions

MIT License. Contributions welcome! Please see CONTRIBUTING.md in the repository.

Emmanuel Ebekue