AI & ML interests

None defined yet.

Recent Activity

Articles

daavooΒ 
posted an update 9 days ago
view post
Post
151
A new minor version of any-agent (1.1.0 ) is out πŸš€

https://github.com/mozilla-ai/any-agent/releases/tag/1.1.0

- 🀏Improvements for Small Language Models
We recommend tinyagent to be used as default when working with Small Language Models.
- πŸ§ͺ Extending and Improving test suite.
For example, we now include a cookbook and an integration test running a Small Language Model (Qwen 1.7B)
- πŸ“–Extending and Improving docs
stefan-frenchΒ 
posted an update 23 days ago
view post
Post
201
πŸš€ We recently released any-llm: https://github.com/mozilla-ai/any-llm

πŸ§‘β€πŸ’» It's easy to get started:

from any_llm import completion
import os

# Make sure you have the appropriate environment variable set
assert os.environ.get('MISTRAL_API_KEY')
# Basic completion
response = completion(
    model="mistral/mistral-small-latest", # <provider_id>/<model_id>
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)

πŸ“– Read more about it here: https://huggingface.co/blog/mozilla-ai/introducing-any-llm
stefan-frenchΒ 
published an article 23 days ago
view article
Article

Introducing any-llm: A unified API to access any LLM provider

By mozilla-ai and 1 other β€’
β€’ 3
daavooΒ 
updated a Space 27 days ago
stefan-frenchΒ 
posted an update about 1 month ago
view post
Post
2178
πŸš€ We just released the WASM Agent Blueprint!

It shows how to run Python-based AI agents directly in your browser using WebAssembly (WASM) via Pyodide and the OpenAI Agents SDK. There are no installs, it runs straight in your browser.

Try it out and explore the code πŸ‘‰ https://github.com/mozilla-ai/wasm-agents-blueprint
  • 1 reply
Β·
daavooΒ 
posted an update 3 months ago
stefan-frenchΒ 
posted an update 3 months ago
daavooΒ 
posted an update 3 months ago
view post
Post
1497
Have you heard about the Agent2Agent Protocol (A2A)?

We have just released an option in https://github.com/mozilla-ai/any-agent to serve with A2A any of the supported agent frameworks (Agno, Google ADK, Langchain, LlamaIndex, OpenAI Agents SDK, smolagents and tinyagent)!

Check the docs https://mozilla-ai.github.io/any-agent/serving/

# google_expert.py
from any_agent import AgentConfig, AnyAgent
from any_agent.config import ServingConfig
from any_agent.tools import search_web

agent = AnyAgent.create(
    "google",
    AgentConfig(
        name="google_expert",
        model_id="gpt-4.1-nano",
        instructions="You must use the available tools to find an answer",
        description="An agent that can answer questions about the Google Agents Development Kit (ADK).",
        tools=[search_web]
    )
)

agent.serve(ServingConfig(port=5001))