This commit is contained in:
Ishaan Jaffer
2025-12-14 14:06:16 -08:00
parent 493e4b3315
commit 71ab4a3108
+15 -8
View File
@@ -16,18 +16,11 @@ Add A2A Agents on LiteLLM AI Gateway, Invoke agents in A2A Protocol, track reque
| Feature | Supported |
|---------|-----------|
| Support Agent Providers | A2A, LangGraph, Azure AI Foundry, Bedrock AgentCore |
| Logging | ✅ |
| Load Balancing | ✅ |
| Streaming | ✅ |
## Supported Agent Providers
| Provider | Supported | Documentation |
|----------|-----------|---------------|
| LangGraph | ✅ | [LangGraph Agents](./providers/langgraph) |
| A2A Agents | ✅ | [A2A Protocol](#adding-your-agent) |
| Azure AI Foundry Agents | ✅ | [Azure AI Agents](./providers/azure_ai_agents) |
| Bedrock Agent Core Agents | [Bedrock AgentCore](./providers/bedrock_agentcore) | |
:::tip
@@ -37,6 +30,8 @@ LiteLLM follows the [A2A (Agent-to-Agent) Protocol](https://github.com/google/A2
## Adding your Agent
### Add A2A Agents
You can add A2A-compatible agents through the LiteLLM Admin UI.
1. Navigate to the **Agents** tab
@@ -50,6 +45,18 @@ You can add A2A-compatible agents through the LiteLLM Admin UI.
The URL should be the invocation URL for your A2A agent (e.g., `http://localhost:10001`).
### Add Azure AI Foundry Agents
Follow [this guide, to add your azure ai foundry agent to LiteLLM Agent Gateway](./providers/azure_ai_agents#litellm-a2a-gateway)
### Add LangGraph Agents
Follow [this guide, to add your langgraph agent to LiteLLM Agent Gateway](./providers/langgraph#litellm-a2a-gateway)
### Add Bedrock AgentCore Agents
Follow [this guide, to add your bedrock agentcore agent to LiteLLM Agent Gateway](./providers/bedrock_agentcore#litellm-a2a-gateway)
## Invoking your Agents
Use the [A2A Python SDK](https://pypi.org/project/a2a/) to invoke agents through LiteLLM.