Skip to content

0.2.0

Compare
Choose a tag to compare
@daavoo daavoo released this 10 Apr 12:48
· 90 commits to main since this release
5d206cc

What's Changed

  • feat: Add support for Google Agent Development Kit (ADK) by @daavoo in #52
agent = AnyAgent.create(
    AgentFramework("google"),
    AgentConfig(
        model_id="gemini/gemini-2.0-flash"
    )
)
agent.run("Which Agent Framework is the best??")
  • feat(llama_index): Use LiteLLM as default model class. by @daavoo in #48

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 in optional-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