An orchestration framework for evolving autonomous AI agents
Project description
โ๏ธ๐ EvoAgent
โก An orchestration framework for all your AI needs โก
โโโโโโโโโโโ โโโ โโโโโโโ โโโโโโ โโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโ
โโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโ โโโโโโโโโโโโ
โโโโโโ โโโ โโโโโโ โโโ โโโโโโโโโโโ โโโโโโโโโโ โโโโโโ โโโ โโโ
โโโโโโ โโโโ โโโโโโโ โโโ โโโโโโโโโโโ โโโโโโโโโ โโโโโโโโโโ โโโ
โโโโโโโโ โโโโโโโ โโโโโโโโโ โโโ โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโ โโโ
โโโโโโโโ โโโโโ โโโโโโโ โโโ โโโ โโโโโโโ โโโโโโโโโโโ โโโโโ โโโ
=====================================================================
๐ค Welcome to EVO AGENT! Your Evolution in AI Begins Here ๐ค
=====================================================================
Features
- ๐ค Multiple LLM Support (OpenAI, Anthropic, Groq)
- ๐ Vector Store Integration (FAISS, Qdrant, ChromaDB)
- ๐ Advanced Document Processing
- ๐๏ธ Speech-to-Text Capabilities
- ๐ Web Crawling
- ๐ Data Visualization
- ๐ฏ RAG Applications
- ๐ค PhiData Agent Integration
- ๐ฌ Interactive Chatbots
- ๐ค Self-Evolving Autonomous Agents
Installation
pip install evoagent
Usage
EvoAgent Framework
from evoagent.agent import Agent
def example_function(input_text: str) -> str:
return f"Processed: {input_text}"
agent = Agent()
agent.register_function(example_function)
query = "Analyze market trends in AI"
response = agent.process_query(query)
print(response)
RAG Implementation
from evoagent.vector_store import FAISSVectorStore
from evoagent.embeddings import HuggingFaceEmbeddings
from evoagent.llms import GroqLLM
vector_store = FAISSVectorStore()
embeddings = HuggingFaceEmbeddings()
llm = GroqLLM("llama3-8b-8192")
text = "AI is transforming industries with automation."
vector_store.add(text, embeddings.embed(text))
query = "How is AI impacting industries?"
response = llm.generate(query)
print(response)
Chatbot Integration
from evoagent.chatbot import Chatbot
chatbot = Chatbot(title="EvoAgent Chatbot")
chatbot.chat()
Contributing
git clone https://github.com/yourusername/evoagent.git
cd evoagent
pip install -e .
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
evoagent-0.2.0.tar.gz
(29.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
evoagent-0.2.0-py3-none-any.whl
(31.8 kB
view details)
File details
Details for the file evoagent-0.2.0.tar.gz.
File metadata
- Download URL: evoagent-0.2.0.tar.gz
- Upload date:
- Size: 29.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0be29dd80ad388861d3658d170e1d6c0b33dc9b01da8e64f8a416c1f544a06cd
|
|
| MD5 |
8828f1460d6cf4452ba5cb8cce849d58
|
|
| BLAKE2b-256 |
d33cdad5698f027858db0784b7c1b158912fd5f89bbf047e5a7a51dd1596afcf
|
File details
Details for the file evoagent-0.2.0-py3-none-any.whl.
File metadata
- Download URL: evoagent-0.2.0-py3-none-any.whl
- Upload date:
- Size: 31.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13bf3000410b2cada214787c8c6694def20152518ae2221ca2ed2c1abde039a9
|
|
| MD5 |
160f59dbaa7ddd262049c0d56b87a4ed
|
|
| BLAKE2b-256 |
e32c3915b8b5d756ca839637ef1c0f01d673523576fb556660a502668e46f396
|