Skip to main content
Agno is a lightweight, model-agnostic Python framework for building agents. Simple API, minimal boilerplate.
agent.py
from agno.agent import Agent
from agno.models.openai import OpenAIChat

agent = Agent(
    model=OpenAIChat(id="gpt-4o"),
    instructions="You are a helpful assistant.",
)

while True:
    try:
        user_input = input()
    except EOFError:
        break
    response = agent.run(user_input)
    print(response.content)
requirements.txt
agno
openai
superserve deploy agent.py
superserve secrets set my-agent OPENAI_API_KEY=sk-...
superserve run my-agent
Agno is model-agnostic - swap OpenAIChat for AnthropicChat, GroqChat, or other providers without changing your agent logic. See the Agno models docs.

See the full Python example. Integrate deployed agents into your apps using the Superserve SDK.