While traces and decision graphs help you debug a single failure, Agent Knowledge Profiles help you understand your agent’s performance across thousands of runs.Documentation Index
Fetch the complete documentation index at: https://whyops.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
What is an Agent Knowledge Profile?
A Knowledge Profile is an aggregated dashboard specific to a single Agent (identified by theX-Agent-Name header you send through the proxy).
It combines:
- Usage Analytics: Volume, token consumption, and cost over time.
- Performance Analytics: P50/P90/P99 latency distributions.
- Evaluation Scores: The results of automated LLM-as-a-judge evaluations run by the WhyOps
analyseservice.
LLM Evaluations
You can configure WhyOps to automatically run deep evaluations on a sampling of your agent’s traces. When you trigger an analysis run (e.g., mode:deep, judgeModel: gpt-4o), WhyOps evaluates the trace across specific dimensions that you select.
Viewing the Data
The Knowledge Profile visualizes these scores usingrecharts to show trends over time.
- Trend Lines: See if your agent’s
intent_precisiondropped after you deployed a new system prompt last Tuesday. - Radar Charts: Compare your agent’s strengths. Perhaps your agent is excellent at
tool_invocation_quality(formatting JSON arguments correctly) but terrible attool_routing_quality(picking the right tool in the first place). - Failure Modals: The profile highlights the most common static analysis findings for your agent. If 40% of your traces have an
ORPHAN_TOOL_CALL_RESPONSEwarning, you know there is a systemic bug in your agent framework’s event emission.