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=25

What Studio Reports

SourceMeaning
static_contextStatic documents attached to the agent
dynamic_contextDynamic context providers registered on the agent
dynamic_toolsDynamic tools registered on the agent
EvidenceDocuments 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.