|
17 | 17 |
|
18 | 18 | from __future__ import annotations |
19 | 19 |
|
| 20 | +from .step import Step as Step |
20 | 21 | from .tool import Tool as Tool |
21 | | -from .turn import Turn as Turn |
22 | 22 | from .model import Model as Model |
23 | 23 | from .usage import Usage as Usage |
24 | 24 | from .content import Content as Content |
25 | 25 | from .webhook import Webhook as Webhook |
26 | 26 | from .function import Function as Function |
| 27 | +from .step_stop import StepStop as StepStop |
27 | 28 | from .annotation import Annotation as Annotation |
| 29 | +from .step_delta import StepDelta as StepDelta |
| 30 | +from .step_param import StepParam as StepParam |
| 31 | +from .step_start import StepStart as StepStart |
28 | 32 | from .tool_param import ToolParam as ToolParam |
29 | | -from .turn_param import TurnParam as TurnParam |
30 | 33 | from .error_event import ErrorEvent as ErrorEvent |
31 | 34 | from .interaction import Interaction as Interaction |
32 | 35 | from .model_param import ModelParam as ModelParam |
33 | 36 | from .usage_param import UsageParam as UsageParam |
34 | 37 | from .content_stop import ContentStop as ContentStop |
35 | 38 | from .image_config import ImageConfig as ImageConfig |
36 | 39 | from .text_content import TextContent as TextContent |
| 40 | +from .thought_step import ThoughtStep as ThoughtStep |
37 | 41 | from .url_citation import URLCitation as URLCitation |
38 | 42 | from .allowed_tools import AllowedTools as AllowedTools |
39 | 43 | from .audio_content import AudioContent as AudioContent |
|
49 | 53 | from .signing_secret import SigningSecret as SigningSecret |
50 | 54 | from .thinking_level import ThinkingLevel as ThinkingLevel |
51 | 55 | from .webhook_config import WebhookConfig as WebhookConfig |
52 | | -from .thought_content import ThoughtContent as ThoughtContent |
| 56 | +from .user_input_step import UserInputStep as UserInputStep |
53 | 57 | from .annotation_param import AnnotationParam as AnnotationParam |
54 | 58 | from .document_content import DocumentContent as DocumentContent |
55 | 59 | from .tool_choice_type import ToolChoiceType as ToolChoiceType |
56 | 60 | from .generation_config import GenerationConfig as GenerationConfig |
| 61 | +from .model_output_step import ModelOutputStep as ModelOutputStep |
| 62 | +from .function_call_step import FunctionCallStep as FunctionCallStep |
57 | 63 | from .google_maps_result import GoogleMapsResult as GoogleMapsResult |
58 | 64 | from .image_config_param import ImageConfigParam as ImageConfigParam |
59 | 65 | from .text_content_param import TextContentParam as TextContentParam |
| 66 | +from .thought_step_param import ThoughtStepParam as ThoughtStepParam |
60 | 67 | from .tool_choice_config import ToolChoiceConfig as ToolChoiceConfig |
61 | 68 | from .url_citation_param import URLCitationParam as URLCitationParam |
62 | 69 | from .url_context_result import URLContextResult as URLContextResult |
|
69 | 76 | from .webhook_list_params import WebhookListParams as WebhookListParams |
70 | 77 | from .webhook_ping_params import WebhookPingParams as WebhookPingParams |
71 | 78 | from .dynamic_agent_config import DynamicAgentConfig as DynamicAgentConfig |
| 79 | +from .function_result_step import FunctionResultStep as FunctionResultStep |
72 | 80 | from .google_search_result import GoogleSearchResult as GoogleSearchResult |
73 | 81 | from .place_citation_param import PlaceCitationParam as PlaceCitationParam |
74 | 82 | from .webhook_config_param import WebhookConfigParam as WebhookConfigParam |
75 | | -from .function_call_content import FunctionCallContent as FunctionCallContent |
| 83 | +from .file_search_call_step import FileSearchCallStep as FileSearchCallStep |
| 84 | +from .google_maps_call_step import GoogleMapsCallStep as GoogleMapsCallStep |
76 | 85 | from .interaction_sse_event import InteractionSSEEvent as InteractionSSEEvent |
77 | | -from .thought_content_param import ThoughtContentParam as ThoughtContentParam |
| 86 | +from .url_context_call_step import URLContextCallStep as URLContextCallStep |
| 87 | +from .user_input_step_param import UserInputStepParam as UserInputStepParam |
78 | 88 | from .webhook_create_params import WebhookCreateParams as WebhookCreateParams |
79 | 89 | from .webhook_list_response import WebhookListResponse as WebhookListResponse |
80 | 90 | from .webhook_ping_response import WebhookPingResponse as WebhookPingResponse |
81 | 91 | from .webhook_update_params import WebhookUpdateParams as WebhookUpdateParams |
82 | 92 | from .document_content_param import DocumentContentParam as DocumentContentParam |
83 | 93 | from .interaction_get_params import InteractionGetParams as InteractionGetParams |
84 | | -from .function_result_content import FunctionResultContent as FunctionResultContent |
| 94 | +from .file_search_result_step import FileSearchResultStep as FileSearchResultStep |
85 | 95 | from .generation_config_param import GenerationConfigParam as GenerationConfigParam |
| 96 | +from .google_maps_result_step import GoogleMapsResultStep as GoogleMapsResultStep |
| 97 | +from .google_search_call_step import GoogleSearchCallStep as GoogleSearchCallStep |
86 | 98 | from .interaction_start_event import InteractionStartEvent as InteractionStartEvent |
| 99 | +from .model_output_step_param import ModelOutputStepParam as ModelOutputStepParam |
| 100 | +from .url_context_result_step import URLContextResultStep as URLContextResultStep |
87 | 101 | from .webhook_delete_response import WebhookDeleteResponse as WebhookDeleteResponse |
88 | | -from .file_search_call_content import FileSearchCallContent as FileSearchCallContent |
89 | | -from .google_maps_call_content import GoogleMapsCallContent as GoogleMapsCallContent |
90 | | -from .google_maps_result_param import GoogleMapsResultParam as GoogleMapsResultParam |
| 102 | +from .code_execution_call_step import CodeExecutionCallStep as CodeExecutionCallStep |
| 103 | +from .function_call_step_param import FunctionCallStepParam as FunctionCallStepParam |
91 | 104 | from .tool_choice_config_param import ToolChoiceConfigParam as ToolChoiceConfigParam |
92 | | -from .url_context_call_content import URLContextCallContent as URLContextCallContent |
93 | | -from .url_context_result_param import URLContextResultParam as URLContextResultParam |
| 105 | +from .google_search_result_step import GoogleSearchResultStep as GoogleSearchResultStep |
94 | 106 | from .interaction_create_params import InteractionCreateParams as InteractionCreateParams |
95 | 107 | from .interaction_status_update import InteractionStatusUpdate as InteractionStatusUpdate |
| 108 | +from .mcp_server_tool_call_step import MCPServerToolCallStep as MCPServerToolCallStep |
| 109 | +from .code_execution_result_step import CodeExecutionResultStep as CodeExecutionResultStep |
96 | 110 | from .deep_research_agent_config import DeepResearchAgentConfig as DeepResearchAgentConfig |
97 | 111 | from .dynamic_agent_config_param import DynamicAgentConfigParam as DynamicAgentConfigParam |
98 | | -from .file_search_result_content import FileSearchResultContent as FileSearchResultContent |
| 112 | +from .function_result_step_param import FunctionResultStepParam as FunctionResultStepParam |
99 | 113 | from .google_maps_call_arguments import GoogleMapsCallArguments as GoogleMapsCallArguments |
100 | | -from .google_maps_result_content import GoogleMapsResultContent as GoogleMapsResultContent |
101 | | -from .google_search_call_content import GoogleSearchCallContent as GoogleSearchCallContent |
102 | | -from .google_search_result_param import GoogleSearchResultParam as GoogleSearchResultParam |
103 | 114 | from .interaction_complete_event import InteractionCompleteEvent as InteractionCompleteEvent |
104 | 115 | from .url_context_call_arguments import URLContextCallArguments as URLContextCallArguments |
105 | | -from .url_context_result_content import URLContextResultContent as URLContextResultContent |
106 | | -from .code_execution_call_content import CodeExecutionCallContent as CodeExecutionCallContent |
107 | | -from .function_call_content_param import FunctionCallContentParam as FunctionCallContentParam |
| 116 | +from .file_search_call_step_param import FileSearchCallStepParam as FileSearchCallStepParam |
| 117 | +from .google_maps_call_step_param import GoogleMapsCallStepParam as GoogleMapsCallStepParam |
| 118 | +from .mcp_server_tool_result_step import MCPServerToolResultStep as MCPServerToolResultStep |
| 119 | +from .url_context_call_step_param import URLContextCallStepParam as URLContextCallStepParam |
108 | 120 | from .google_search_call_arguments import GoogleSearchCallArguments as GoogleSearchCallArguments |
109 | | -from .google_search_result_content import GoogleSearchResultContent as GoogleSearchResultContent |
110 | | -from .mcp_server_tool_call_content import MCPServerToolCallContent as MCPServerToolCallContent |
111 | 121 | from .code_execution_call_arguments import CodeExecutionCallArguments as CodeExecutionCallArguments |
112 | | -from .code_execution_result_content import CodeExecutionResultContent as CodeExecutionResultContent |
113 | | -from .function_result_content_param import FunctionResultContentParam as FunctionResultContentParam |
114 | | -from .file_search_call_content_param import FileSearchCallContentParam as FileSearchCallContentParam |
115 | | -from .google_maps_call_content_param import GoogleMapsCallContentParam as GoogleMapsCallContentParam |
116 | | -from .mcp_server_tool_result_content import MCPServerToolResultContent as MCPServerToolResultContent |
117 | | -from .url_context_call_content_param import URLContextCallContentParam as URLContextCallContentParam |
| 122 | +from .file_search_result_step_param import FileSearchResultStepParam as FileSearchResultStepParam |
| 123 | +from .google_maps_result_step_param import GoogleMapsResultStepParam as GoogleMapsResultStepParam |
| 124 | +from .google_search_call_step_param import GoogleSearchCallStepParam as GoogleSearchCallStepParam |
| 125 | +from .url_context_result_step_param import URLContextResultStepParam as URLContextResultStepParam |
| 126 | +from .code_execution_call_step_param import CodeExecutionCallStepParam as CodeExecutionCallStepParam |
| 127 | +from .google_search_result_step_param import GoogleSearchResultStepParam as GoogleSearchResultStepParam |
| 128 | +from .mcp_server_tool_call_step_param import MCPServerToolCallStepParam as MCPServerToolCallStepParam |
| 129 | +from .code_execution_result_step_param import CodeExecutionResultStepParam as CodeExecutionResultStepParam |
118 | 130 | from .deep_research_agent_config_param import DeepResearchAgentConfigParam as DeepResearchAgentConfigParam |
119 | | -from .file_search_result_content_param import FileSearchResultContentParam as FileSearchResultContentParam |
120 | | -from .google_maps_call_arguments_param import GoogleMapsCallArgumentsParam as GoogleMapsCallArgumentsParam |
121 | | -from .google_maps_result_content_param import GoogleMapsResultContentParam as GoogleMapsResultContentParam |
122 | | -from .google_search_call_content_param import GoogleSearchCallContentParam as GoogleSearchCallContentParam |
123 | | -from .url_context_call_arguments_param import URLContextCallArgumentsParam as URLContextCallArgumentsParam |
124 | | -from .url_context_result_content_param import URLContextResultContentParam as URLContextResultContentParam |
125 | | -from .code_execution_call_content_param import CodeExecutionCallContentParam as CodeExecutionCallContentParam |
126 | | -from .google_search_call_arguments_param import GoogleSearchCallArgumentsParam as GoogleSearchCallArgumentsParam |
127 | | -from .google_search_result_content_param import GoogleSearchResultContentParam as GoogleSearchResultContentParam |
128 | | -from .mcp_server_tool_call_content_param import MCPServerToolCallContentParam as MCPServerToolCallContentParam |
129 | | -from .code_execution_call_arguments_param import CodeExecutionCallArgumentsParam as CodeExecutionCallArgumentsParam |
130 | | -from .code_execution_result_content_param import CodeExecutionResultContentParam as CodeExecutionResultContentParam |
131 | | -from .mcp_server_tool_result_content_param import MCPServerToolResultContentParam as MCPServerToolResultContentParam |
| 131 | +from .mcp_server_tool_result_step_param import MCPServerToolResultStepParam as MCPServerToolResultStepParam |
132 | 132 | from .webhook_rotate_signing_secret_params import WebhookRotateSigningSecretParams as WebhookRotateSigningSecretParams |
133 | 133 | from .webhook_rotate_signing_secret_response import ( |
134 | 134 | WebhookRotateSigningSecretResponse as WebhookRotateSigningSecretResponse, |
|
0 commit comments