Introducing Any-Agent: An abstraction layer between your code and the many agentic frameworks
β’
1
None defined yet.
any-agent
library, now with support for the Agno agent framework. any-agent
π agent = AnyAgent.create(
AgentFramework("google"),
AgentConfig(
model_id="gpt-4o-mini"
)
)
agent.run("Which Agent Framework is the best??")
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??")