@@ -111,7 +111,7 @@ async def create_async(
111111 def create (
112112 self , input : AgentRuntimeCreateInput , config : Optional [Config ] = None
113113 ) -> AgentRuntime :
114- """同步创建 Agent Runtime / Create Agent Runtime asynchronously
114+ """同步创建 Agent Runtime / Create Agent Runtime synchronously
115115
116116 Args:
117117 input: Agent Runtime 创建配置 / Agent Runtime creation configuration
@@ -176,7 +176,7 @@ async def delete_async(
176176 raise e .to_resource_error ("AgentRuntime" , id ) from e
177177
178178 def delete (self , id : str , config : Optional [Config ] = None ) -> AgentRuntime :
179- """同步删除 Agent Runtime / Delete Agent Runtime asynchronously
179+ """同步删除 Agent Runtime / Delete Agent Runtime synchronously
180180
181181 Args:
182182 id: Agent Runtime ID
@@ -231,7 +231,7 @@ def update(
231231 input : AgentRuntimeUpdateInput ,
232232 config : Optional [Config ] = None ,
233233 ) -> AgentRuntime :
234- """同步更新 Agent Runtime / Update Agent Runtime asynchronously
234+ """同步更新 Agent Runtime / Update Agent Runtime synchronously
235235
236236 Args:
237237 id: Agent Runtime ID
@@ -286,7 +286,7 @@ def get(
286286 id : str ,
287287 config : Optional [Config ] = None ,
288288 ) -> AgentRuntime :
289- """同步获取 Agent Runtime / Get Agent Runtime asynchronously
289+ """同步获取 Agent Runtime / Get Agent Runtime synchronously
290290
291291 Args:
292292 id: Agent Runtime ID
@@ -343,7 +343,7 @@ def list(
343343 input : Optional [AgentRuntimeListInput ] = None ,
344344 config : Optional [Config ] = None ,
345345 ) -> List [AgentRuntime ]:
346- """同步列出 Agent Runtimes / List Agent Runtimes asynchronously
346+ """同步列出 Agent Runtimes / List Agent Runtimes synchronously
347347
348348 Args:
349349 input: 列表查询配置,可选 / List query configuration, optional
@@ -417,7 +417,7 @@ def create_endpoint(
417417 endpoint : AgentRuntimeEndpointCreateInput ,
418418 config : Optional [Config ] = None ,
419419 ) -> AgentRuntimeEndpoint :
420- """同步创建 Agent Runtime 端点 / Create Agent Runtime Endpoint asynchronously
420+ """同步创建 Agent Runtime 端点 / Create Agent Runtime Endpoint synchronously
421421
422422 Args:
423423 agent_runtime_id: Agent Runtime ID
@@ -496,7 +496,7 @@ def delete_endpoint(
496496 endpoint_id : str ,
497497 config : Optional [Config ] = None ,
498498 ) -> AgentRuntimeEndpoint :
499- """同步删除 Agent Runtime 端点 / Delete Agent Runtime Endpoint asynchronously
499+ """同步删除 Agent Runtime 端点 / Delete Agent Runtime Endpoint synchronously
500500
501501 Args:
502502 agent_runtime_id: Agent Runtime ID
@@ -578,7 +578,7 @@ def update_endpoint(
578578 endpoint : AgentRuntimeEndpointUpdateInput ,
579579 config : Optional [Config ] = None ,
580580 ) -> AgentRuntimeEndpoint :
581- """同步更新 Agent Runtime 端点 / Update Agent Runtime Endpoint asynchronously
581+ """同步更新 Agent Runtime 端点 / Update Agent Runtime Endpoint synchronously
582582
583583 Args:
584584 agent_runtime_id: Agent Runtime ID
@@ -656,7 +656,7 @@ def get_endpoint(
656656 endpoint_id : str ,
657657 config : Optional [Config ] = None ,
658658 ) -> AgentRuntimeEndpoint :
659- """同步获取 Agent Runtime 端点 / Get Agent Runtime Endpoint asynchronously
659+ """同步获取 Agent Runtime 端点 / Get Agent Runtime Endpoint synchronously
660660
661661 Args:
662662 agent_runtime_id: Agent Runtime ID
@@ -732,7 +732,7 @@ def list_endpoints(
732732 input : Optional [AgentRuntimeEndpointListInput ] = None ,
733733 config : Optional [Config ] = None ,
734734 ) -> List [AgentRuntimeEndpoint ]:
735- """同步列出 Agent Runtime 端点 / List Agent Runtime Endpoints asynchronously
735+ """同步列出 Agent Runtime 端点 / List Agent Runtime Endpoints synchronously
736736
737737 Args:
738738 agent_runtime_id: Agent Runtime ID
@@ -806,7 +806,7 @@ def list_versions(
806806 input : Optional [AgentRuntimeVersionListInput ] = None ,
807807 config : Optional [Config ] = None ,
808808 ) -> List [AgentRuntimeVersion ]:
809- """同步列出 Agent Runtime 版本 / List Agent Runtime Versions asynchronously
809+ """同步列出 Agent Runtime 版本 / List Agent Runtime Versions synchronously
810810
811811 Args:
812812 agent_runtime_id: Agent Runtime ID
0 commit comments