MCPcopy Create free account
hub / github.com/google/adk-python / EvaluateRequest

Class EvaluateRequest

src/google/adk/evaluation/base_eval_service.py:175–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

173
174
175class EvaluateRequest(BaseModel):
176 model_config = ConfigDict(
177 alias_generator=alias_generators.to_camel,
178 populate_by_name=True,
179 )
180
181 inference_results: list[InferenceResult] = Field(
182 description="""A list of inferences that need to be evaluated.""",
183 )
184
185 evaluate_config: EvaluateConfig = Field(
186 description="""The config to use for evaluations.""",
187 )
188
189
190class BaseEvalService(ABC):

Callers 6

test_evaluate_agentFunction · 0.90
test_evaluate_successFunction · 0.90
_evaluate_agentMethod · 0.85
_collect_eval_resultsFunction · 0.85

Calls

no outgoing calls

Tested by 3

test_evaluate_agentFunction · 0.72
test_evaluate_successFunction · 0.72