@@ -1550,7 +1550,7 @@ class CandidateResponse(_common.BaseModel):
15501550 )
15511551 agent_data: Optional[evals_types.AgentData] = Field(
15521552 default=None,
1553- description="""Represents the complete execution trace of an anget conversation,
1553+ description="""Represents the complete execution trace of an agent conversation,
15541554 which can involve single or multiple agents. This field is used to
15551555 provide the full output of an agent's run, including all turns and
15561556 events, for direct evaluation.""",
@@ -1573,7 +1573,7 @@ class CandidateResponseDict(TypedDict, total=False):
15731573 """Intermediate events (such as tool calls and responses) that led to the final response."""
15741574
15751575 agent_data: Optional[evals_types.AgentData]
1576- """Represents the complete execution trace of an anget conversation,
1576+ """Represents the complete execution trace of an agent conversation,
15771577 which can involve single or multiple agents. This field is used to
15781578 provide the full output of an agent's run, including all turns and
15791579 events, for direct evaluation."""
@@ -1637,7 +1637,7 @@ class EvaluationItemResult(_common.BaseModel):
16371637 default=None, description="""The metric that was evaluated."""
16381638 )
16391639 candidate_results: Optional[list[evals_types.CandidateResult]] = Field(
1640- default=None, description="""TThe results for the metric."""
1640+ default=None, description="""The results for the metric."""
16411641 )
16421642 metadata: Optional[dict[str, Any]] = Field(
16431643 default=None, description="""Metadata about the evaluation result."""
@@ -1660,7 +1660,7 @@ class EvaluationItemResultDict(TypedDict, total=False):
16601660 """The metric that was evaluated."""
16611661
16621662 candidate_results: Optional[list[evals_types.CandidateResult]]
1663- """TThe results for the metric."""
1663+ """The results for the metric."""
16641664
16651665 metadata: Optional[dict[str, Any]]
16661666 """Metadata about the evaluation result."""
@@ -9707,7 +9707,7 @@ class _CreateAgentEngineMemoryRequestParameters(_common.BaseModel):
97079707
97089708 Memories are isolated within their scope. The scope is defined when
97099709 creating or generating memories. Up to 5 key-value pairs are accepted,
9710- andscope values cannot contain the wildcard character '*'.""",
9710+ and scope values cannot contain the wildcard character '*'.""",
97119711 )
97129712 config: Optional[AgentEngineMemoryConfig] = Field(default=None, description="""""")
97139713
@@ -9728,7 +9728,7 @@ class _CreateAgentEngineMemoryRequestParametersDict(TypedDict, total=False):
97289728
97299729 Memories are isolated within their scope. The scope is defined when
97309730 creating or generating memories. Up to 5 key-value pairs are accepted,
9731- andscope values cannot contain the wildcard character '*'."""
9731+ and scope values cannot contain the wildcard character '*'."""
97329732
97339733 config: Optional[AgentEngineMemoryConfigDict]
97349734 """"""
0 commit comments