alibabacloud-agentrun20250910 5.3.1__py3-none-any.whl → 5.3.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- alibabacloud_agentrun20250910/__init__.py +1 -1
- alibabacloud_agentrun20250910/client.py +4 -0
- alibabacloud_agentrun20250910/models/__init__.py +4 -0
- alibabacloud_agentrun20250910/models/_agent_runtime.py +8 -0
- alibabacloud_agentrun20250910/models/_change_resource_group_input.py +49 -0
- alibabacloud_agentrun20250910/models/_change_resource_group_output.py +49 -0
- alibabacloud_agentrun20250910/models/_create_agent_runtime_input.py +8 -0
- alibabacloud_agentrun20250910/models/_list_agent_runtimes_request.py +8 -0
- {alibabacloud_agentrun20250910-5.3.1.dist-info → alibabacloud_agentrun20250910-5.3.2.dist-info}/METADATA +2 -2
- {alibabacloud_agentrun20250910-5.3.1.dist-info → alibabacloud_agentrun20250910-5.3.2.dist-info}/RECORD +13 -11
- {alibabacloud_agentrun20250910-5.3.1.dist-info → alibabacloud_agentrun20250910-5.3.2.dist-info}/LICENSE +0 -0
- {alibabacloud_agentrun20250910-5.3.1.dist-info → alibabacloud_agentrun20250910-5.3.2.dist-info}/WHEEL +0 -0
- {alibabacloud_agentrun20250910-5.3.1.dist-info → alibabacloud_agentrun20250910-5.3.2.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '5.3.
|
|
1
|
+
__version__ = '5.3.2'
|
|
@@ -2849,6 +2849,8 @@ class Client(OpenApiClient):
|
|
|
2849
2849
|
query['pageNumber'] = request.page_number
|
|
2850
2850
|
if not DaraCore.is_null(request.page_size):
|
|
2851
2851
|
query['pageSize'] = request.page_size
|
|
2852
|
+
if not DaraCore.is_null(request.resource_group_id):
|
|
2853
|
+
query['resourceGroupId'] = request.resource_group_id
|
|
2852
2854
|
if not DaraCore.is_null(request.search_mode):
|
|
2853
2855
|
query['searchMode'] = request.search_mode
|
|
2854
2856
|
if not DaraCore.is_null(request.status):
|
|
@@ -2887,6 +2889,8 @@ class Client(OpenApiClient):
|
|
|
2887
2889
|
query['pageNumber'] = request.page_number
|
|
2888
2890
|
if not DaraCore.is_null(request.page_size):
|
|
2889
2891
|
query['pageSize'] = request.page_size
|
|
2892
|
+
if not DaraCore.is_null(request.resource_group_id):
|
|
2893
|
+
query['resourceGroupId'] = request.resource_group_id
|
|
2890
2894
|
if not DaraCore.is_null(request.search_mode):
|
|
2891
2895
|
query['searchMode'] = request.search_mode
|
|
2892
2896
|
if not DaraCore.is_null(request.status):
|
|
@@ -27,6 +27,8 @@ from ._browser_streams import BrowserStreams
|
|
|
27
27
|
from ._browser_view_port import BrowserViewPort
|
|
28
28
|
from ._capconfig import CAPConfig
|
|
29
29
|
from ._cert_config import CertConfig
|
|
30
|
+
from ._change_resource_group_input import ChangeResourceGroupInput
|
|
31
|
+
from ._change_resource_group_output import ChangeResourceGroupOutput
|
|
30
32
|
from ._code_configuration import CodeConfiguration
|
|
31
33
|
from ._code_info import CodeInfo
|
|
32
34
|
from ._code_interpreter import CodeInterpreter
|
|
@@ -359,6 +361,8 @@ __all__ = [
|
|
|
359
361
|
BrowserViewPort,
|
|
360
362
|
CAPConfig,
|
|
361
363
|
CertConfig,
|
|
364
|
+
ChangeResourceGroupInput,
|
|
365
|
+
ChangeResourceGroupOutput,
|
|
362
366
|
CodeConfiguration,
|
|
363
367
|
CodeInfo,
|
|
364
368
|
CodeInterpreter,
|
|
@@ -30,6 +30,7 @@ class AgentRuntime(DaraModel):
|
|
|
30
30
|
network_configuration: main_models.NetworkConfiguration = None,
|
|
31
31
|
port: int = None,
|
|
32
32
|
protocol_configuration: main_models.ProtocolConfiguration = None,
|
|
33
|
+
resource_group_id: str = None,
|
|
33
34
|
session_concurrency_limit_per_instance: int = None,
|
|
34
35
|
session_idle_timeout_seconds: int = None,
|
|
35
36
|
status: str = None,
|
|
@@ -75,6 +76,7 @@ class AgentRuntime(DaraModel):
|
|
|
75
76
|
self.port = port
|
|
76
77
|
# 智能体运行时的通信协议配置
|
|
77
78
|
self.protocol_configuration = protocol_configuration
|
|
79
|
+
self.resource_group_id = resource_group_id
|
|
78
80
|
# 每个运行时实例允许的最大并发会话数
|
|
79
81
|
self.session_concurrency_limit_per_instance = session_concurrency_limit_per_instance
|
|
80
82
|
# 会话的空闲超时时间,单位为秒。实例没有会话请求后处于空闲状态,空闲态为闲置计费模式,超过此超时时间后会话自动过期,不可继续使用
|
|
@@ -163,6 +165,9 @@ class AgentRuntime(DaraModel):
|
|
|
163
165
|
if self.protocol_configuration is not None:
|
|
164
166
|
result['protocolConfiguration'] = self.protocol_configuration.to_map()
|
|
165
167
|
|
|
168
|
+
if self.resource_group_id is not None:
|
|
169
|
+
result['resourceGroupId'] = self.resource_group_id
|
|
170
|
+
|
|
166
171
|
if self.session_concurrency_limit_per_instance is not None:
|
|
167
172
|
result['sessionConcurrencyLimitPerInstance'] = self.session_concurrency_limit_per_instance
|
|
168
173
|
|
|
@@ -245,6 +250,9 @@ class AgentRuntime(DaraModel):
|
|
|
245
250
|
temp_model = main_models.ProtocolConfiguration()
|
|
246
251
|
self.protocol_configuration = temp_model.from_map(m.get('protocolConfiguration'))
|
|
247
252
|
|
|
253
|
+
if m.get('resourceGroupId') is not None:
|
|
254
|
+
self.resource_group_id = m.get('resourceGroupId')
|
|
255
|
+
|
|
248
256
|
if m.get('sessionConcurrencyLimitPerInstance') is not None:
|
|
249
257
|
self.session_concurrency_limit_per_instance = m.get('sessionConcurrencyLimitPerInstance')
|
|
250
258
|
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# This file is auto-generated, don't edit it. Thanks.
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from darabonba.model import DaraModel
|
|
6
|
+
|
|
7
|
+
class ChangeResourceGroupInput(DaraModel):
|
|
8
|
+
def __init__(
|
|
9
|
+
self,
|
|
10
|
+
new_resource_group_id: str = None,
|
|
11
|
+
resource_id: str = None,
|
|
12
|
+
resource_type: str = None,
|
|
13
|
+
):
|
|
14
|
+
self.new_resource_group_id = new_resource_group_id
|
|
15
|
+
self.resource_id = resource_id
|
|
16
|
+
self.resource_type = resource_type
|
|
17
|
+
|
|
18
|
+
def validate(self):
|
|
19
|
+
pass
|
|
20
|
+
|
|
21
|
+
def to_map(self):
|
|
22
|
+
result = dict()
|
|
23
|
+
_map = super().to_map()
|
|
24
|
+
if _map is not None:
|
|
25
|
+
result = _map
|
|
26
|
+
if self.new_resource_group_id is not None:
|
|
27
|
+
result['newResourceGroupId'] = self.new_resource_group_id
|
|
28
|
+
|
|
29
|
+
if self.resource_id is not None:
|
|
30
|
+
result['resourceId'] = self.resource_id
|
|
31
|
+
|
|
32
|
+
if self.resource_type is not None:
|
|
33
|
+
result['resourceType'] = self.resource_type
|
|
34
|
+
|
|
35
|
+
return result
|
|
36
|
+
|
|
37
|
+
def from_map(self, m: dict = None):
|
|
38
|
+
m = m or dict()
|
|
39
|
+
if m.get('newResourceGroupId') is not None:
|
|
40
|
+
self.new_resource_group_id = m.get('newResourceGroupId')
|
|
41
|
+
|
|
42
|
+
if m.get('resourceId') is not None:
|
|
43
|
+
self.resource_id = m.get('resourceId')
|
|
44
|
+
|
|
45
|
+
if m.get('resourceType') is not None:
|
|
46
|
+
self.resource_type = m.get('resourceType')
|
|
47
|
+
|
|
48
|
+
return self
|
|
49
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# This file is auto-generated, don't edit it. Thanks.
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from darabonba.model import DaraModel
|
|
6
|
+
|
|
7
|
+
class ChangeResourceGroupOutput(DaraModel):
|
|
8
|
+
def __init__(
|
|
9
|
+
self,
|
|
10
|
+
new_resource_group_id: str = None,
|
|
11
|
+
old_resource_group_id: str = None,
|
|
12
|
+
resource_id: str = None,
|
|
13
|
+
):
|
|
14
|
+
self.new_resource_group_id = new_resource_group_id
|
|
15
|
+
self.old_resource_group_id = old_resource_group_id
|
|
16
|
+
self.resource_id = resource_id
|
|
17
|
+
|
|
18
|
+
def validate(self):
|
|
19
|
+
pass
|
|
20
|
+
|
|
21
|
+
def to_map(self):
|
|
22
|
+
result = dict()
|
|
23
|
+
_map = super().to_map()
|
|
24
|
+
if _map is not None:
|
|
25
|
+
result = _map
|
|
26
|
+
if self.new_resource_group_id is not None:
|
|
27
|
+
result['newResourceGroupId'] = self.new_resource_group_id
|
|
28
|
+
|
|
29
|
+
if self.old_resource_group_id is not None:
|
|
30
|
+
result['oldResourceGroupId'] = self.old_resource_group_id
|
|
31
|
+
|
|
32
|
+
if self.resource_id is not None:
|
|
33
|
+
result['resourceId'] = self.resource_id
|
|
34
|
+
|
|
35
|
+
return result
|
|
36
|
+
|
|
37
|
+
def from_map(self, m: dict = None):
|
|
38
|
+
m = m or dict()
|
|
39
|
+
if m.get('newResourceGroupId') is not None:
|
|
40
|
+
self.new_resource_group_id = m.get('newResourceGroupId')
|
|
41
|
+
|
|
42
|
+
if m.get('oldResourceGroupId') is not None:
|
|
43
|
+
self.old_resource_group_id = m.get('oldResourceGroupId')
|
|
44
|
+
|
|
45
|
+
if m.get('resourceId') is not None:
|
|
46
|
+
self.resource_id = m.get('resourceId')
|
|
47
|
+
|
|
48
|
+
return self
|
|
49
|
+
|
|
@@ -26,6 +26,7 @@ class CreateAgentRuntimeInput(DaraModel):
|
|
|
26
26
|
network_configuration: main_models.NetworkConfiguration = None,
|
|
27
27
|
port: int = None,
|
|
28
28
|
protocol_configuration: main_models.ProtocolConfiguration = None,
|
|
29
|
+
resource_group_id: str = None,
|
|
29
30
|
session_concurrency_limit_per_instance: int = None,
|
|
30
31
|
session_idle_timeout_seconds: int = None,
|
|
31
32
|
):
|
|
@@ -73,6 +74,7 @@ class CreateAgentRuntimeInput(DaraModel):
|
|
|
73
74
|
self.port = port
|
|
74
75
|
# 智能体运行时的通信协议配置,定义运行时如何与外部系统交互
|
|
75
76
|
self.protocol_configuration = protocol_configuration
|
|
77
|
+
self.resource_group_id = resource_group_id
|
|
76
78
|
# 每个运行时实例允许的最大并发会话数
|
|
77
79
|
self.session_concurrency_limit_per_instance = session_concurrency_limit_per_instance
|
|
78
80
|
# 会话的空闲超时时间,单位为秒。实例没有会话请求后处于空闲状态,空闲态为闲置计费模式,超过此超时时间后会话自动过期,不可继续使用
|
|
@@ -145,6 +147,9 @@ class CreateAgentRuntimeInput(DaraModel):
|
|
|
145
147
|
if self.protocol_configuration is not None:
|
|
146
148
|
result['protocolConfiguration'] = self.protocol_configuration.to_map()
|
|
147
149
|
|
|
150
|
+
if self.resource_group_id is not None:
|
|
151
|
+
result['resourceGroupId'] = self.resource_group_id
|
|
152
|
+
|
|
148
153
|
if self.session_concurrency_limit_per_instance is not None:
|
|
149
154
|
result['sessionConcurrencyLimitPerInstance'] = self.session_concurrency_limit_per_instance
|
|
150
155
|
|
|
@@ -209,6 +214,9 @@ class CreateAgentRuntimeInput(DaraModel):
|
|
|
209
214
|
temp_model = main_models.ProtocolConfiguration()
|
|
210
215
|
self.protocol_configuration = temp_model.from_map(m.get('protocolConfiguration'))
|
|
211
216
|
|
|
217
|
+
if m.get('resourceGroupId') is not None:
|
|
218
|
+
self.resource_group_id = m.get('resourceGroupId')
|
|
219
|
+
|
|
212
220
|
if m.get('sessionConcurrencyLimitPerInstance') is not None:
|
|
213
221
|
self.session_concurrency_limit_per_instance = m.get('sessionConcurrencyLimitPerInstance')
|
|
214
222
|
|
|
@@ -10,6 +10,7 @@ class ListAgentRuntimesRequest(DaraModel):
|
|
|
10
10
|
agent_runtime_name: str = None,
|
|
11
11
|
page_number: int = None,
|
|
12
12
|
page_size: int = None,
|
|
13
|
+
resource_group_id: str = None,
|
|
13
14
|
search_mode: str = None,
|
|
14
15
|
status: str = None,
|
|
15
16
|
):
|
|
@@ -19,6 +20,7 @@ class ListAgentRuntimesRequest(DaraModel):
|
|
|
19
20
|
self.page_number = page_number
|
|
20
21
|
# 每页返回的记录数量
|
|
21
22
|
self.page_size = page_size
|
|
23
|
+
self.resource_group_id = resource_group_id
|
|
22
24
|
# 查询模式,支持精确查询和模糊查询
|
|
23
25
|
self.search_mode = search_mode
|
|
24
26
|
# 根据状态进行过滤,多个状态用逗号分隔,支持精确匹配
|
|
@@ -41,6 +43,9 @@ class ListAgentRuntimesRequest(DaraModel):
|
|
|
41
43
|
if self.page_size is not None:
|
|
42
44
|
result['pageSize'] = self.page_size
|
|
43
45
|
|
|
46
|
+
if self.resource_group_id is not None:
|
|
47
|
+
result['resourceGroupId'] = self.resource_group_id
|
|
48
|
+
|
|
44
49
|
if self.search_mode is not None:
|
|
45
50
|
result['searchMode'] = self.search_mode
|
|
46
51
|
|
|
@@ -60,6 +65,9 @@ class ListAgentRuntimesRequest(DaraModel):
|
|
|
60
65
|
if m.get('pageSize') is not None:
|
|
61
66
|
self.page_size = m.get('pageSize')
|
|
62
67
|
|
|
68
|
+
if m.get('resourceGroupId') is not None:
|
|
69
|
+
self.resource_group_id = m.get('resourceGroupId')
|
|
70
|
+
|
|
63
71
|
if m.get('searchMode') is not None:
|
|
64
72
|
self.search_mode = m.get('searchMode')
|
|
65
73
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-agentrun20250910
|
|
3
|
-
Version: 5.3.
|
|
3
|
+
Version: 5.3.2
|
|
4
4
|
Summary: Alibaba Cloud AgentRun (20250910) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
|
@@ -23,7 +23,7 @@ Classifier: Topic :: Software Development
|
|
|
23
23
|
Requires-Python: >=3.7
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
25
|
License-File: LICENSE
|
|
26
|
-
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.4.
|
|
26
|
+
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.4.3)
|
|
27
27
|
Requires-Dist: darabonba-core (<2.0.0,>=1.0.0)
|
|
28
28
|
|
|
29
29
|
English | [简体中文](README-CN.md)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
alibabacloud_agentrun20250910/__init__.py,sha256=
|
|
2
|
-
alibabacloud_agentrun20250910/client.py,sha256=
|
|
3
|
-
alibabacloud_agentrun20250910/models/__init__.py,sha256=
|
|
1
|
+
alibabacloud_agentrun20250910/__init__.py,sha256=Fg50FfjCpZD7UfxgCfREHezQb-Ohl-B-Fki6d-AEMKo,21
|
|
2
|
+
alibabacloud_agentrun20250910/client.py,sha256=Cf2Lh0G5znntZZ815oA5RvWqHtxGPozyXTOnxpiNLpQ,174823
|
|
3
|
+
alibabacloud_agentrun20250910/models/__init__.py,sha256=Q6IJmsofNIHPwz2Qu_VZ0QZDO4OKl4yuecbhjY61jdY,29177
|
|
4
4
|
alibabacloud_agentrun20250910/models/_activate_template_mcprequest.py,sha256=ERcrdYR0QD2PcPL84J75TlMAWVy9GHWKZoEiM0vXUPU,1075
|
|
5
5
|
alibabacloud_agentrun20250910/models/_activate_template_mcpresponse.py,sha256=d9dd1zzMWbrKqWNPbRBFSpVm-f3nzR_f5x5hp9oFI0I,1460
|
|
6
|
-
alibabacloud_agentrun20250910/models/_agent_runtime.py,sha256=
|
|
6
|
+
alibabacloud_agentrun20250910/models/_agent_runtime.py,sha256=_Ig12o5CQ_14pnECLz2iFDGNvO-1fjPQQnhmPvMRdtI,11443
|
|
7
7
|
alibabacloud_agentrun20250910/models/_agent_runtime_endpoint.py,sha256=VlxB16htiN_48WPcEQi807nTDxAzmVpOco3i7llyy_E,4120
|
|
8
8
|
alibabacloud_agentrun20250910/models/_agent_runtime_endpoint_result.py,sha256=5q6NuKbTswBCuVfFhF0aZjaUe0Hrkvs7AE7qGqSaQ0A,1645
|
|
9
9
|
alibabacloud_agentrun20250910/models/_agent_runtime_result.py,sha256=-lVQV0KnoWJEmVyWO7QnlsFWpgnLzTmvEf9asdL7l7w,1615
|
|
@@ -28,6 +28,8 @@ alibabacloud_agentrun20250910/models/_browser_streams.py,sha256=G0GqzDFW09eQACf7
|
|
|
28
28
|
alibabacloud_agentrun20250910/models/_browser_view_port.py,sha256=RHrZdDpuND3UTLIBlXNG3BysmT4E--WnwlTpyPbQvCs,941
|
|
29
29
|
alibabacloud_agentrun20250910/models/_capconfig.py,sha256=fZRMu3R5KvRtFKJS_WaWMH8zZMBBuXje_Gnk3iVBsAw,1244
|
|
30
30
|
alibabacloud_agentrun20250910/models/_cert_config.py,sha256=WXG1h7MOADvn8OqvtxrM0Yiksw0UCho_vfZ_LmZaPZA,1537
|
|
31
|
+
alibabacloud_agentrun20250910/models/_change_resource_group_input.py,sha256=bHlpl8dVyn_rb5ZTYM5Q5nBAoym4Tq2TM8g1KPAD_EE,1403
|
|
32
|
+
alibabacloud_agentrun20250910/models/_change_resource_group_output.py,sha256=xj8fUdXmzV1YcHzosWqtfY0heW_5CpkHxaFH7ZPgZqQ,1470
|
|
31
33
|
alibabacloud_agentrun20250910/models/_code_configuration.py,sha256=gfqrLlNmhP10zYRcR-dCtMUW_kXXf3x-9p-h2kIR3fE,2387
|
|
32
34
|
alibabacloud_agentrun20250910/models/_code_info.py,sha256=lbjwlXg65H1LNJEWgEHOvHnjPi9qaU9QqnMUu9odVS0,1089
|
|
33
35
|
alibabacloud_agentrun20250910/models/_code_interpreter.py,sha256=0eNDihIudKYqdVnFnB6bRYf5H2aOW04BxgMP2uLjjNE,4723
|
|
@@ -40,7 +42,7 @@ alibabacloud_agentrun20250910/models/_container_configuration.py,sha256=zbERBSh5
|
|
|
40
42
|
alibabacloud_agentrun20250910/models/_create_agent_runtime_endpoint_input.py,sha256=dEyw_HeSPunKarZxqPao1QzZhtjLJkLrlP_UVu7GyjY,2211
|
|
41
43
|
alibabacloud_agentrun20250910/models/_create_agent_runtime_endpoint_request.py,sha256=6AAgJhnhdqrB0mCuLWYT62N-YWuoRO5ZqtUm194iC_A,1099
|
|
42
44
|
alibabacloud_agentrun20250910/models/_create_agent_runtime_endpoint_response.py,sha256=XDwGoTaBCBgPV3uojhpmPSJekLdew_8wwHcV6IyENjA,1491
|
|
43
|
-
alibabacloud_agentrun20250910/models/_create_agent_runtime_input.py,sha256=
|
|
45
|
+
alibabacloud_agentrun20250910/models/_create_agent_runtime_input.py,sha256=emGrsN2pk5VUAE_FR0JMVn8_1Ehl0FzVIieCJFHykzY,9882
|
|
44
46
|
alibabacloud_agentrun20250910/models/_create_agent_runtime_request.py,sha256=AdHJk1-TbCjFQ6T-Qtsn7sQoBWLNeE9VlCi71pZQj5g,1132
|
|
45
47
|
alibabacloud_agentrun20250910/models/_create_agent_runtime_response.py,sha256=OFurOl3H-aBZiOXdY2wBQlw7asOJKTlugcVtoRmR_6I,1467
|
|
46
48
|
alibabacloud_agentrun20250910/models/_create_agent_runtime_version_input.py,sha256=q7iyH2DyzF6t7ce1F9cBohneKdf-a3CFu_r24LnmOKM,809
|
|
@@ -156,7 +158,7 @@ alibabacloud_agentrun20250910/models/_list_agent_runtime_versions_response.py,sh
|
|
|
156
158
|
alibabacloud_agentrun20250910/models/_list_agent_runtime_versions_result.py,sha256=CFQezgZX5JTCNi-Jd08vzJ6uB3aU6q8ME3BKPbfK9d4,1675
|
|
157
159
|
alibabacloud_agentrun20250910/models/_list_agent_runtimes_input.py,sha256=C4WA6FPKRsxICp1c8VdFgwWzUPyPFk3DZgEzegS0unI,1705
|
|
158
160
|
alibabacloud_agentrun20250910/models/_list_agent_runtimes_output.py,sha256=_bK7LIV0axsM1FenWwpM0DFh89cSjUAMwYs6-JgJggw,1887
|
|
159
|
-
alibabacloud_agentrun20250910/models/_list_agent_runtimes_request.py,sha256=
|
|
161
|
+
alibabacloud_agentrun20250910/models/_list_agent_runtimes_request.py,sha256=cqRhslSzmjgNl1KwCz4ujxvmtcnRRY0iYbRQQvbHL00,2428
|
|
160
162
|
alibabacloud_agentrun20250910/models/_list_agent_runtimes_response.py,sha256=6FAsVFFp1To-XUgKPTxcQjdjJ4UTRGf4Nvsjb5p3GGk,1476
|
|
161
163
|
alibabacloud_agentrun20250910/models/_list_agent_runtimes_result.py,sha256=gpgqqxd8EcaxQU_8Rcbkf41_CsLsMotXmx9kEQWSYIo,1648
|
|
162
164
|
alibabacloud_agentrun20250910/models/_list_browser_session_result.py,sha256=l9H1ej5_orsuaScpF8EjinhEyMv3kSFeKYuM6H9gsRU,1539
|
|
@@ -316,8 +318,8 @@ alibabacloud_agentrun20250910/models/_update_tool_output.py,sha256=8Qy6IF4Tv61KC
|
|
|
316
318
|
alibabacloud_agentrun20250910/models/_vector_store_config.py,sha256=rvEBQNPeVcXQmBfJHVo2vpQbTR4u9-xerWNUEa2HLMg,2685
|
|
317
319
|
alibabacloud_agentrun20250910/models/_version_weight.py,sha256=b8Q6LkLBbwREUz5u4gksWiZJOR3KnwvQnmGKZmBRhfE,1035
|
|
318
320
|
alibabacloud_agentrun20250910/models/_view_port_configuration.py,sha256=9OJd_njOHJISm9XTCXbpPTw78eKbcn0h8NPI_51KqgI,1115
|
|
319
|
-
alibabacloud_agentrun20250910-5.3.
|
|
320
|
-
alibabacloud_agentrun20250910-5.3.
|
|
321
|
-
alibabacloud_agentrun20250910-5.3.
|
|
322
|
-
alibabacloud_agentrun20250910-5.3.
|
|
323
|
-
alibabacloud_agentrun20250910-5.3.
|
|
321
|
+
alibabacloud_agentrun20250910-5.3.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
322
|
+
alibabacloud_agentrun20250910-5.3.2.dist-info/METADATA,sha256=4sISkz5ELHtinbqDNhjPMTsJRNy6Sb4Y6fz75Aoq2CQ,2324
|
|
323
|
+
alibabacloud_agentrun20250910-5.3.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
324
|
+
alibabacloud_agentrun20250910-5.3.2.dist-info/top_level.txt,sha256=52ubthzYJLT_H920wO8t0i9HV90alDqttDu0fv3l1aM,30
|
|
325
|
+
alibabacloud_agentrun20250910-5.3.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|