feat(conformance): Replaces invocation_id with user_message_index in the Recording

`invocation_id` is per-request, so we just need user_message_index to help locate where to start replay.

PiperOrigin-RevId: 807300016
This commit is contained in:
Wei Sun (Jack)
2025-09-15 10:49:13 -07:00
committed by Copybara-Service
parent 6158075a65
commit 402f3626b3
+2 -2
View File
@@ -81,8 +81,8 @@ class Recording(BaseModel):
extra="forbid",
)
invocation_id: str
"""Unique invocation identifier."""
user_message_index: int
"""Index of the user message this recording belongs to (0-based)."""
agent_name: str
"""Name of the agent."""