Post
1821
After working on agent evaluation🔍🤖 the last weeks, we started to accumulate code to make trying different agent frameworks easier. From that code, we have built and just released a small library called
Give it a try and a ⭐: https://github.com/mozilla-ai/any-agent
any-agent
. Give it a try and a ⭐: https://github.com/mozilla-ai/any-agent
from any_agent import AgentConfig, AgentFramework, AnyAgent
agent = AnyAgent.create(
AgentFramework("smolagents"), # or openai, langchain, llama_index
AgentConfig(
model_id="gpt-4o-mini"
)
)
agent.run("Which Agent Framework is the best??")