0.2.0
What's Changed
agent = AnyAgent.create(
AgentFramework("google"),
AgentConfig(
model_id="gemini/gemini-2.0-flash"
)
)
agent.run("Which Agent Framework is the best??")
Allows you to use a consistent LiteLLM
syntax in the model_id
argument across google
, llama_index
and smolagents
:
agent = AnyAgent.create(
AgentFramework("llama_index"),
AgentConfig(
model_id="gemini/gemini-2.0-flash"
)
)
agent.run("Which Agent Framework is the best??")
- Update README.md by @njbrake in #41
- Add Jupyter notebook clarification by @njbrake in #42
- build: Add
all
group inoptional-dependencies
. by @daavoo in #49 - More direct calls for contribution by @njbrake in #46
- docs(frameworks): Add
Models
section. by @daavoo in #53
Full Changelog: 0.1.0...0.2.0