Inspect Context
Knowledge
Inspect agent context and recent retrieval evidence in Studio.
The knowledge endpoint summarizes context sources registered on Studio agents and recent evidence captured from traces.
curl http://localhost:4021/knowledge?limit=25What Studio Reports
| Source | Meaning |
|---|---|
static_context | Static documents attached to the agent |
dynamic_context | Dynamic context providers registered on the agent |
dynamic_tools | Dynamic tools registered on the agent |
| Evidence | Documents and tool names observed in recent generation traces |
Response Shape
{
"agents": [
{
"agentId": "support-operations",
"agentName": "Support Operations",
"sources": [
{ "kind": "static_context", "count": 2 },
{ "kind": "dynamic_context", "count": 1 },
{ "kind": "dynamic_tools", "count": 0 }
],
"staticContext": []
}
],
"evidence": []
}Evidence is available when traces are stored. Without trace storage, Studio can still report configured agent knowledge sources, but recent evidence is empty.
Use this page when you need to confirm which context sources are available to an agent and whether retrieval evidence appeared in recent runs.
