AI & ML interests

None defined yet.

Recent Activity

daavooย  updated a Space 8 days ago
mozilla-ai/README
kostisszย  published a Space 14 days ago
mozilla-ai/fake-audio-detection
kostisszย  updated a Space 14 days ago
mozilla-ai/fake-audio-detection
View all activity

Articles

mozilla-ai's activity

daavooย 
posted an update 6 days ago
view post
Post
1294
We've just released a new version of https://github.com/mozilla-ai/any-agent , including a Python implementation of https://huggingface.co/blog/tiny-agents!

Give it a โญ!

from any_agent import AnyAgent, AgentConfig
from any_agent.config import MCPStdioParams

agent = AnyAgent.create(
    "tinyagent",
    AgentConfig(
        model_id="gpt-4.1-nano",
        instructions="You must use the available tools to find an answer",
        tools=[
            MCPStdioParams(
                command="uvx",
                args=["duckduckgo-mcp-server"]
            )
        ]
    )
)

result = agent.run(
    "Which Agent Framework is the best??"
)
print(result.final_output)

daavooย 
updated a Space 8 days ago
daavooย 
posted an update 13 days ago
view post
Post
1927
We have just released a new version ofโญhttps://github.com/mozilla-ai/any-agent โญexposing an API to be used in async contexts:

import asyncio
from any_agent import AgentConfig, AnyAgent, TracingConfig
from any_agent.tools import search_web

async def main():
    agent = await AnyAgent.create_async(
        "openai",
        AgentConfig(
            model_id="gpt-4.1-mini",
            instructions="You are the main agent. Use the other available agents to find an answer",
        ),
        managed_agents=[
            AgentConfig(
                name="search_web_agent",
                description="An agent that can search the web",
                model_id="gpt-4.1-nano",
                tools=[search_web]
            )
        ],
        tracing=TracingConfig()
    )

    await agent.run_async("Which Agent Framework is the best??")

if __name__ == "__main__":
    asyncio.run(main())
daavooย 
posted an update 17 days ago
view post
Post
2053
Another day, another release in
โญhttps://github.com/mozilla-ai/any-agent โญ

You can now use MCP (Model Context Protocol) tools via SSE (Server-Sent Events):

from any_agent import AgentConfig, AnyAgent
from any_agent.config import MCPSseParams

agent = AnyAgent.create(
    "smolagents",
    AgentConfig(
        model_id="gpt-4o-mini",
        tools=[
            MCPSseParams(
                url="http://localhost:8000/sse"
            ),
        ]
    )
)
agent.run("What do MCP and SSE mean?")


See SuperGateway for an easy way to turn a Stdio server into an SSE server.
daavooย 
posted an update 22 days ago
view post
Post
1299
New release in https://github.com/mozilla-ai/any-agent ๐Ÿค–

You can now use "managed_agents" also in langchain and llama_index, in addition to the other frameworks:

from any_agent import AgentConfig, AgentFramework, AnyAgent
from any_agent.tracing import setup_tracing

framework = AgentFramework("langchain")  # also in AgentFramework("llama_index") and the rest of frameworks
setup_tracing(framework)

agent = AnyAgent.create(
    framework,
    AgentConfig(
        model_id="gpt-4.1-mini",
        instructions="You are the main agent. Use the other available agents to find an answer",
    ),
    managed_agents=[
        AgentConfig(
            name="search_web_agent",
            description="An agent that can search the web",
            model_id="gpt-4.1-nano",
            tools=["any_agent.tools.search_web"]
        ),
        AgentConfig(
            name="visit_webpage_agent",
            description="An agent that can visit webpages",
            model_id="gpt-4.1-nano",
            tools=["any_agent.tools.visit_webpage"]
        )
    ]
)
agent.run("Which Agent Framework is the best??")
  • 2 replies
ยท
stefan-frenchย 
posted an update 24 days ago

GPU support

#1 opened 24 days ago by
kostissz
daavooย 
posted an update 28 days ago
view post
Post
2819
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ย 
posted an update about 1 month ago
view post
Post
1832
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??")
stefan-frenchย 
posted an update about 2 months ago
daavooย 
posted an update about 2 months ago
view post
Post
2015
๐Ÿค– ๐Ÿ—บMapped all(?) the swimming pools ๏ธ๐ŸŠ around another town with https://github.com/mozilla-ai/osm-ai-helper.

This time, I have mapped and contributed to https://www.openstreetmap.org more than 100 swimming pools around my wife's hometown. Only took about 20min to find them all (+~3 min verification) in a free Colab GPU๐Ÿš€

Try it yourself around a single point: mozilla-ai/osm-ai-helper