AI & ML interests

None defined yet.

Recent Activity

kostissz  updated a Space about 15 hours ago
mozilla-ai/document-to-markdown
kostissz  published a Space about 15 hours ago
mozilla-ai/document-to-markdown
View all activity

Articles

mozilla-ai's activity

stefan-french 
posted an update 1 day ago
daavoo 
posted an update 6 days ago
view post
Post
2764
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
1813
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??")