@ag-ui/agno
Implementation of the AG-UI protocol for Agno.
Connects Agno agents to frontend applications via the AG-UI protocol using HTTP communication.
Installation
npm install @ag-ui/agno
pnpm add @ag-ui/agno
yarn add @ag-ui/agno
Usage
import { AgnoAgent } from "@ag-ui/agno";
const agent = new AgnoAgent({
url: "https://your-agno-server.com/agent",
headers: { Authorization: "Bearer your-token" },
});
const result = await agent.runAgent({
messages: [{ role: "user", content: "Hello from Agno!" }],
});
Features
- HTTP connectivity – Direct connection to Agno agent servers
- Multi-agent support – Works with Agno's multi-agent system architecture
- Streaming responses – Real-time communication with full AG-UI event support