MCPcopy Create free account
hub / github.com/docker/model-test / AgentReport

Struct AgentReport

models/chat.go:108–119  ·  view source on GitHub ↗

AgentReport contains the results of an agent test suite

Source from the content-addressed store, hash-verified

106
107// AgentReport contains the results of an agent test suite
108type AgentReport struct {
109 Timestamp time.Time `json:"timestamp"`
110 TestSuite string `json:"test_suite"`
111 Results []AgentTestResult `json:"results"`
112 TotalTests int `json:"total_tests"`
113 PassedTests int `json:"passed_tests"`
114 FailedTests int `json:"failed_tests"`
115 AverageTime time.Duration `json:"average_time"`
116 TotalLLMRequests int `json:"total_llm_requests"`
117 TotalLLMTime time.Duration `json:"total_llm_time"`
118 AvgTimePerReq time.Duration `json:"avg_time_per_request"`
119}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected