Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions google/genai/_interactions/types/content_delta.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,8 +333,7 @@ class ContentDelta(BaseModel):

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

event_type: Optional[Literal["content.delta"]] = None
Expand Down
3 changes: 1 addition & 2 deletions google/genai/_interactions/types/content_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ class ContentStart(BaseModel):

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

event_type: Optional[Literal["content.start"]] = None
Expand Down
3 changes: 1 addition & 2 deletions google/genai/_interactions/types/content_stop.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
class ContentStop(BaseModel):
event_id: Optional[str] = None
"""
The event_id token to be used to resume the interaction stream, from
this event.
The event_id token to be used to resume the interaction stream, from this event.
"""

event_type: Optional[Literal["content.stop"]] = None
Expand Down
3 changes: 1 addition & 2 deletions google/genai/_interactions/types/error_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ class ErrorEvent(BaseModel):

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

event_type: Optional[Literal["error"]] = None
3 changes: 1 addition & 2 deletions google/genai/_interactions/types/interaction_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@
class InteractionEvent(BaseModel):
event_id: Optional[str] = None
"""
The event_id token to be used to resume the interaction stream, from
this event.
The event_id token to be used to resume the interaction stream, from this event.
"""

event_type: Optional[Literal["interaction.start", "interaction.complete"]] = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
class InteractionStatusUpdate(BaseModel):
event_id: Optional[str] = None
"""
The event_id token to be used to resume the interaction stream, from
this event.
The event_id token to be used to resume the interaction stream, from this event.
"""

event_type: Optional[Literal["interaction.status_update"]] = None
Expand Down