package request type RunAgentEvaluationRequest struct { AIAgentID int64 `json:"ai_agent_id"` Cases []AgentEvaluationCase `json:"cases"` } type AgentEvaluationCase struct { ID string `json:"id"` Category string `json:"category"` Message string `json:"message"` History []string `json:"history,omitempty"` Expect map[string]any `json:"expect,omitempty"` }