Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion apps/dojo/src/agents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,13 @@ export const agentsIntegrations = {

agno: async () =>
mapAgents(
(path) => new AgnoAgent({ url: `${envVars.agnoUrl}/${path}/agui` }),
(path) =>
new AgnoAgent({
url: `${envVars.agnoUrl}/${path}/agui`,
...(envVars.agnoAuthToken && {
headers: { Authorization: `Bearer ${envVars.agnoAuthToken}` },
}),
}),
{
agentic_chat: "agentic_chat",
agentic_chat_reasoning: "agentic_chat_reasoning",
Expand Down
2 changes: 2 additions & 0 deletions apps/dojo/src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ type envVars = {
langgraphFastApiUrl: string;
langgraphTypescriptUrl: string;
agnoUrl: string;
agnoAuthToken: string;
springAiUrl: string;
llamaIndexUrl: string;
crewAiUrl: string;
Expand Down Expand Up @@ -56,6 +57,7 @@ export default function getEnvVars(): envVars {
langgraphTypescriptUrl:
process.env.LANGGRAPH_TYPESCRIPT_URL || "http://localhost:2024",
agnoUrl: process.env.AGNO_URL || "http://localhost:9001",
agnoAuthToken: process.env.AGNO_AUTH_TOKEN || "",
llamaIndexUrl: process.env.LLAMA_INDEX_URL || "http://localhost:9000",
crewAiUrl: process.env.CREW_AI_URL || "http://localhost:9002",
agentSpecUrl: process.env.AGENT_SPEC_URL || "http://localhost:9003",
Expand Down
8 changes: 8 additions & 0 deletions integrations/agno/typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ const result = await agent.runAgent({
});
```

## Dojo

To run the [dojo](https://github.com/ag-ui-protocol/ag-ui/tree/main/apps/dojo) against a secured AgentOS (e.g. `OS_SECURITY_KEY`, JWT middleware, or platform access tokens), set `AGNO_AUTH_TOKEN` — every agno request will then carry an `Authorization: Bearer <token>` header:

```bash
AGNO_URL=http://localhost:9001 AGNO_AUTH_TOKEN=<your-key-or-token> pnpm dev
```

## Features

- **HTTP connectivity** – Direct connection to Agno agent servers
Expand Down