AI & ML interests

None defined yet.

Recent Activity

Articles

mozilla-ai's activity

stefan-frenchΒ 
posted an update 2 days ago

GPU support

#1 opened 2 days ago by
kostissz
daavooΒ 
posted an update 6 days ago
view post
Post
2768
Wondering how the new Google Agent Development Toolkit (ADK) compares against other frameworks? πŸ€”You can try it in any-agent πŸš€

https://github.com/mozilla-ai/any-agent

agent = AnyAgent.create(
    AgentFramework("google"),
    AgentConfig(
        model_id="gpt-4o-mini"
    )
)
agent.run("Which Agent Framework is the best??")

  • 1 reply
Β·
daavooΒ 
updated a Space 7 days ago
daavooΒ 
posted an update 8 days ago
view post
Post
1816
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 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??")