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

Struct AgentTestResult

models/chat.go:95–105  ·  view source on GitHub ↗

AgentTestResult represents the result of testing the agent loop

Source from the content-addressed store, hash-verified

93
94// AgentTestResult represents the result of testing the agent loop
95type AgentTestResult struct {
96 TestCase TestCase `json:"test_case"`
97 ModelName string `json:"model_name"`
98 Config TestConfig `json:"config"`
99 Response *ChatResponse `json:"response"`
100 Success bool `json:"success"`
101 MatchedPath string `json:"matched_path,omitempty"`
102 ErrorMessage string `json:"error_message,omitempty"`
103 Timestamp time.Time `json:"timestamp"`
104 ResponseTime time.Duration `json:"response_time"`
105}
106
107// AgentReport contains the results of an agent test suite
108type AgentReport struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected