DEON ORINA NYABWENGI's picture
2

DEON ORINA NYABWENGI

chinesemusk
·

AI & ML interests

Deep learning, Reinforcement learning, Natural language processing

Recent Activity

updated a Space 29 days ago
chinesemusk/Deon
published a Space 29 days ago
chinesemusk/Deon
updated a Space 30 days ago
chinesemusk/Non_zero-sumGame-Agents
View all activity

Organizations

Hugging Face Discord Community's profile picture

chinesemusk's activity

published a model about 1 month ago
updated a model about 1 month ago
published a model about 1 month ago
reacted to daavoo's post with 👍 about 2 months ago
view post
Post
2058
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.