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
9 changes: 0 additions & 9 deletions google/genai/_gaos/types/interactions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,6 @@
from .toolchoiceconfig import ToolChoiceConfig, ToolChoiceConfigParam
from .toolchoicetype import ToolChoiceType
from .transcriptionconfig import TranscriptionConfig, TranscriptionConfigParam
from .turn import Turn, TurnContent, TurnContentParam, TurnParam
from .urlcitation import URLCitation, URLCitationParam
from .urlcontext import URLContext, URLContextParam
from .urlcontextcallarguments import (
Expand Down Expand Up @@ -733,10 +732,6 @@
"TranscriptionConfigParam",
"Transform",
"TransformParam",
"Turn",
"TurnContent",
"TurnContentParam",
"TurnParam",
"URLCitation",
"URLCitationParam",
"URLContext",
Expand Down Expand Up @@ -1120,10 +1115,6 @@
"ToolChoiceType": ".toolchoicetype",
"TranscriptionConfig": ".transcriptionconfig",
"TranscriptionConfigParam": ".transcriptionconfig",
"Turn": ".turn",
"TurnContent": ".turn",
"TurnContentParam": ".turn",
"TurnParam": ".turn",
"URLCitation": ".urlcitation",
"URLCitationParam": ".urlcitation",
"URLContext": ".urlcontext",
Expand Down
5 changes: 2 additions & 3 deletions google/genai/_gaos/types/interactions/interactionsinput.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,18 @@
from __future__ import annotations
from .content import Content, ContentParam
from .step import Step, StepParam
from .turn import Turn, TurnParam
from typing import List, Union
from typing_extensions import TypeAliasType


InteractionsInputParam = TypeAliasType(
"InteractionsInputParam",
Union[str, List[StepParam], List[ContentParam], List[TurnParam], ContentParam],
Union[str, List[StepParam], List[ContentParam], ContentParam],
)
r"""The input for the interaction."""


InteractionsInput = TypeAliasType(
"InteractionsInput", Union[str, List[Step], List[Content], List[Turn], Content]
"InteractionsInput", Union[str, List[Step], List[Content], Content]
)
r"""The input for the interaction."""
69 changes: 0 additions & 69 deletions google/genai/_gaos/types/interactions/turn.py

This file was deleted.

4 changes: 0 additions & 4 deletions google/genai/tests/gaos/test_triggers_lifecycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,6 @@ def log_message(self, *args) -> None:
}
],
),
(
[{"role": "user", "content": "test-input-turn"}],
[{"role": "user", "content": "test-input-turn"}],
),
(
{"type": "text", "text": "test-input-single-content"},
{"type": "text", "text": "test-input-single-content"},
Expand Down
Loading