Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions google/genai/_interactions/types/interaction_status_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ class Metadata(BaseModel):


class InteractionStatusUpdate(BaseModel):
event_type: Literal["interaction.status_update"]
event_type: Literal["interaction.status_update"]

interaction_id: str
interaction_id: str

status: Literal[
"in_progress", "requires_action", "completed", "failed", "cancelled", "incomplete", "budget_exceeded"
]

event_id: Optional[str] = None
"""
event_id: Optional[str] = None
"""
The event_id token to be used to resume the interaction stream, from this event.
"""

Expand Down
Loading