Skip to content

Commit d5a9527

Browse files
IvanLHcopybara-github
authored andcommitted
chore: Cleanup
PiperOrigin-RevId: 914978706
1 parent abb1099 commit d5a9527

5 files changed

Lines changed: 3 additions & 104 deletions

File tree

google/genai/_interactions/types/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@
8585
from .interaction_sse_event import InteractionSSEEvent as InteractionSSEEvent
8686
from .url_context_call_step import URLContextCallStep as URLContextCallStep
8787
from .user_input_step_param import UserInputStepParam as UserInputStepParam
88-
from .video_response_format import VideoResponseFormat as VideoResponseFormat
8988
from .webhook_create_params import WebhookCreateParams as WebhookCreateParams
9089
from .webhook_list_response import WebhookListResponse as WebhookListResponse
9190
from .webhook_ping_response import WebhookPingResponse as WebhookPingResponse
@@ -121,7 +120,6 @@
121120
from .interaction_completed_event import InteractionCompletedEvent as InteractionCompletedEvent
122121
from .mcp_server_tool_result_step import MCPServerToolResultStep as MCPServerToolResultStep
123122
from .url_context_call_step_param import URLContextCallStepParam as URLContextCallStepParam
124-
from .video_response_format_param import VideoResponseFormatParam as VideoResponseFormatParam
125123
from .google_search_call_arguments import GoogleSearchCallArguments as GoogleSearchCallArguments
126124
from .code_execution_call_arguments import CodeExecutionCallArguments as CodeExecutionCallArguments
127125
from .file_search_result_step_param import FileSearchResultStepParam as FileSearchResultStepParam

google/genai/_interactions/types/interaction.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
from .text_response_format import TextResponseFormat
3939
from .audio_response_format import AudioResponseFormat
4040
from .image_response_format import ImageResponseFormat
41-
from .video_response_format import VideoResponseFormat
4241
from .deep_research_agent_config import DeepResearchAgentConfig
4342

4443
__all__ = ["Interaction", "AgentConfig", "Input", "ResponseFormat", "ResponseFormatResponseFormatList"]
@@ -52,16 +51,11 @@
5251
]
5352

5453
ResponseFormatResponseFormatList: TypeAlias = Union[
55-
AudioResponseFormat, TextResponseFormat, ImageResponseFormat, VideoResponseFormat, object
54+
AudioResponseFormat, TextResponseFormat, ImageResponseFormat, object
5655
]
5756

5857
ResponseFormat: TypeAlias = Union[
59-
List[ResponseFormatResponseFormatList],
60-
AudioResponseFormat,
61-
TextResponseFormat,
62-
ImageResponseFormat,
63-
VideoResponseFormat,
64-
object,
58+
List[ResponseFormatResponseFormatList], AudioResponseFormat, TextResponseFormat, ImageResponseFormat, object
6559
]
6660

6761

google/genai/_interactions/types/interaction_create_params.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
from .text_response_format_param import TextResponseFormatParam
3636
from .audio_response_format_param import AudioResponseFormatParam
3737
from .image_response_format_param import ImageResponseFormatParam
38-
from .video_response_format_param import VideoResponseFormatParam
3938
from .deep_research_agent_config_param import DeepResearchAgentConfigParam
4039

4140
__all__ = [
@@ -114,15 +113,14 @@ class BaseCreateModelInteractionParams(TypedDict, total=False):
114113
]
115114

116115
ResponseFormatResponseFormatList: TypeAlias = Union[
117-
AudioResponseFormatParam, TextResponseFormatParam, ImageResponseFormatParam, VideoResponseFormatParam, object
116+
AudioResponseFormatParam, TextResponseFormatParam, ImageResponseFormatParam, object
118117
]
119118

120119
ResponseFormat: TypeAlias = Union[
121120
Iterable[ResponseFormatResponseFormatList],
122121
AudioResponseFormatParam,
123122
TextResponseFormatParam,
124123
ImageResponseFormatParam,
125-
VideoResponseFormatParam,
126124
object,
127125
]
128126

google/genai/_interactions/types/video_response_format.py

Lines changed: 0 additions & 46 deletions
This file was deleted.

google/genai/_interactions/types/video_response_format_param.py

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)