alibabacloud-agentrun20250910 5.1.0__py3-none-any.whl → 5.3.0__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 +757 -21
- alibabacloud_agentrun20250910/models/__init__.py +34 -0
- alibabacloud_agentrun20250910/models/_create_custom_domain_request.py +36 -0
- alibabacloud_agentrun20250910/models/_create_custom_domain_response.py +54 -0
- alibabacloud_agentrun20250910/models/_create_memory_collection_request.py +36 -0
- alibabacloud_agentrun20250910/models/_create_memory_collection_response.py +54 -0
- alibabacloud_agentrun20250910/models/_delete_custom_domain_response.py +54 -0
- alibabacloud_agentrun20250910/models/_delete_memory_collection_response.py +54 -0
- alibabacloud_agentrun20250910/models/_get_custom_domain_response.py +54 -0
- alibabacloud_agentrun20250910/models/_get_memory_collection_response.py +54 -0
- alibabacloud_agentrun20250910/models/_list_custom_domains_request.py +65 -0
- alibabacloud_agentrun20250910/models/_list_custom_domains_response.py +54 -0
- alibabacloud_agentrun20250910/models/_list_memory_collections_request.py +65 -0
- alibabacloud_agentrun20250910/models/_list_memory_collections_response.py +54 -0
- alibabacloud_agentrun20250910/models/_protocol_configuration.py +21 -1
- alibabacloud_agentrun20250910/models/_protocol_settings.py +115 -0
- alibabacloud_agentrun20250910/models/_update_custom_domain_request.py +36 -0
- alibabacloud_agentrun20250910/models/_update_custom_domain_response.py +54 -0
- alibabacloud_agentrun20250910/models/_update_memory_collection_request.py +36 -0
- alibabacloud_agentrun20250910/models/_update_memory_collection_response.py +54 -0
- {alibabacloud_agentrun20250910-5.1.0.dist-info → alibabacloud_agentrun20250910-5.3.0.dist-info}/METADATA +1 -1
- {alibabacloud_agentrun20250910-5.1.0.dist-info → alibabacloud_agentrun20250910-5.3.0.dist-info}/RECORD +26 -9
- {alibabacloud_agentrun20250910-5.1.0.dist-info → alibabacloud_agentrun20250910-5.3.0.dist-info}/LICENSE +0 -0
- {alibabacloud_agentrun20250910-5.1.0.dist-info → alibabacloud_agentrun20250910-5.3.0.dist-info}/WHEEL +0 -0
- {alibabacloud_agentrun20250910-5.1.0.dist-info → alibabacloud_agentrun20250910-5.3.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,65 @@
|
|
|
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 ListMemoryCollectionsRequest(DaraModel):
|
|
8
|
+
def __init__(
|
|
9
|
+
self,
|
|
10
|
+
memory_collection_name: str = None,
|
|
11
|
+
page_number: int = None,
|
|
12
|
+
page_size: int = None,
|
|
13
|
+
status: str = None,
|
|
14
|
+
type: str = None,
|
|
15
|
+
):
|
|
16
|
+
self.memory_collection_name = memory_collection_name
|
|
17
|
+
self.page_number = page_number
|
|
18
|
+
self.page_size = page_size
|
|
19
|
+
self.status = status
|
|
20
|
+
self.type = type
|
|
21
|
+
|
|
22
|
+
def validate(self):
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
def to_map(self):
|
|
26
|
+
result = dict()
|
|
27
|
+
_map = super().to_map()
|
|
28
|
+
if _map is not None:
|
|
29
|
+
result = _map
|
|
30
|
+
if self.memory_collection_name is not None:
|
|
31
|
+
result['memoryCollectionName'] = self.memory_collection_name
|
|
32
|
+
|
|
33
|
+
if self.page_number is not None:
|
|
34
|
+
result['pageNumber'] = self.page_number
|
|
35
|
+
|
|
36
|
+
if self.page_size is not None:
|
|
37
|
+
result['pageSize'] = self.page_size
|
|
38
|
+
|
|
39
|
+
if self.status is not None:
|
|
40
|
+
result['status'] = self.status
|
|
41
|
+
|
|
42
|
+
if self.type is not None:
|
|
43
|
+
result['type'] = self.type
|
|
44
|
+
|
|
45
|
+
return result
|
|
46
|
+
|
|
47
|
+
def from_map(self, m: dict = None):
|
|
48
|
+
m = m or dict()
|
|
49
|
+
if m.get('memoryCollectionName') is not None:
|
|
50
|
+
self.memory_collection_name = m.get('memoryCollectionName')
|
|
51
|
+
|
|
52
|
+
if m.get('pageNumber') is not None:
|
|
53
|
+
self.page_number = m.get('pageNumber')
|
|
54
|
+
|
|
55
|
+
if m.get('pageSize') is not None:
|
|
56
|
+
self.page_size = m.get('pageSize')
|
|
57
|
+
|
|
58
|
+
if m.get('status') is not None:
|
|
59
|
+
self.status = m.get('status')
|
|
60
|
+
|
|
61
|
+
if m.get('type') is not None:
|
|
62
|
+
self.type = m.get('type')
|
|
63
|
+
|
|
64
|
+
return self
|
|
65
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# This file is auto-generated, don't edit it. Thanks.
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Dict
|
|
6
|
+
|
|
7
|
+
from alibabacloud_agentrun20250910 import models as main_models
|
|
8
|
+
from darabonba.model import DaraModel
|
|
9
|
+
|
|
10
|
+
class ListMemoryCollectionsResponse(DaraModel):
|
|
11
|
+
def __init__(
|
|
12
|
+
self,
|
|
13
|
+
headers: Dict[str, str] = None,
|
|
14
|
+
status_code: int = None,
|
|
15
|
+
body: main_models.ListMemoryCollectionsResult = None,
|
|
16
|
+
):
|
|
17
|
+
self.headers = headers
|
|
18
|
+
self.status_code = status_code
|
|
19
|
+
self.body = body
|
|
20
|
+
|
|
21
|
+
def validate(self):
|
|
22
|
+
if self.body:
|
|
23
|
+
self.body.validate()
|
|
24
|
+
|
|
25
|
+
def to_map(self):
|
|
26
|
+
result = dict()
|
|
27
|
+
_map = super().to_map()
|
|
28
|
+
if _map is not None:
|
|
29
|
+
result = _map
|
|
30
|
+
if self.headers is not None:
|
|
31
|
+
result['headers'] = self.headers
|
|
32
|
+
|
|
33
|
+
if self.status_code is not None:
|
|
34
|
+
result['statusCode'] = self.status_code
|
|
35
|
+
|
|
36
|
+
if self.body is not None:
|
|
37
|
+
result['body'] = self.body.to_map()
|
|
38
|
+
|
|
39
|
+
return result
|
|
40
|
+
|
|
41
|
+
def from_map(self, m: dict = None):
|
|
42
|
+
m = m or dict()
|
|
43
|
+
if m.get('headers') is not None:
|
|
44
|
+
self.headers = m.get('headers')
|
|
45
|
+
|
|
46
|
+
if m.get('statusCode') is not None:
|
|
47
|
+
self.status_code = m.get('statusCode')
|
|
48
|
+
|
|
49
|
+
if m.get('body') is not None:
|
|
50
|
+
temp_model = main_models.ListMemoryCollectionsResult()
|
|
51
|
+
self.body = temp_model.from_map(m.get('body'))
|
|
52
|
+
|
|
53
|
+
return self
|
|
54
|
+
|
|
@@ -2,23 +2,37 @@
|
|
|
2
2
|
# This file is auto-generated, don't edit it. Thanks.
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
+
from typing import List
|
|
6
|
+
|
|
7
|
+
from alibabacloud_agentrun20250910 import models as main_models
|
|
5
8
|
from darabonba.model import DaraModel
|
|
6
9
|
|
|
7
10
|
class ProtocolConfiguration(DaraModel):
|
|
8
11
|
def __init__(
|
|
9
12
|
self,
|
|
13
|
+
protocol_settings: List[main_models.ProtocolSettings] = None,
|
|
10
14
|
type: str = None,
|
|
11
15
|
):
|
|
16
|
+
# 详细的协议配置信息
|
|
17
|
+
self.protocol_settings = protocol_settings
|
|
12
18
|
self.type = type
|
|
13
19
|
|
|
14
20
|
def validate(self):
|
|
15
|
-
|
|
21
|
+
if self.protocol_settings:
|
|
22
|
+
for v1 in self.protocol_settings:
|
|
23
|
+
if v1:
|
|
24
|
+
v1.validate()
|
|
16
25
|
|
|
17
26
|
def to_map(self):
|
|
18
27
|
result = dict()
|
|
19
28
|
_map = super().to_map()
|
|
20
29
|
if _map is not None:
|
|
21
30
|
result = _map
|
|
31
|
+
result['protocolSettings'] = []
|
|
32
|
+
if self.protocol_settings is not None:
|
|
33
|
+
for k1 in self.protocol_settings:
|
|
34
|
+
result['protocolSettings'].append(k1.to_map() if k1 else None)
|
|
35
|
+
|
|
22
36
|
if self.type is not None:
|
|
23
37
|
result['type'] = self.type
|
|
24
38
|
|
|
@@ -26,6 +40,12 @@ class ProtocolConfiguration(DaraModel):
|
|
|
26
40
|
|
|
27
41
|
def from_map(self, m: dict = None):
|
|
28
42
|
m = m or dict()
|
|
43
|
+
self.protocol_settings = []
|
|
44
|
+
if m.get('protocolSettings') is not None:
|
|
45
|
+
for k1 in m.get('protocolSettings'):
|
|
46
|
+
temp_model = main_models.ProtocolSettings()
|
|
47
|
+
self.protocol_settings.append(temp_model.from_map(k1))
|
|
48
|
+
|
|
29
49
|
if m.get('type') is not None:
|
|
30
50
|
self.type = m.get('type')
|
|
31
51
|
|
|
@@ -0,0 +1,115 @@
|
|
|
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 ProtocolSettings(DaraModel):
|
|
8
|
+
def __init__(
|
|
9
|
+
self,
|
|
10
|
+
a_2aagent_card: str = None,
|
|
11
|
+
headers: str = None,
|
|
12
|
+
input_body_json_schema: str = None,
|
|
13
|
+
method: str = None,
|
|
14
|
+
name: str = None,
|
|
15
|
+
output_body_json_schema: str = None,
|
|
16
|
+
path: str = None,
|
|
17
|
+
path_prefix: str = None,
|
|
18
|
+
request_content_type: str = None,
|
|
19
|
+
response_content_type: str = None,
|
|
20
|
+
):
|
|
21
|
+
# A2A Agent Card
|
|
22
|
+
self.a_2aagent_card = a_2aagent_card
|
|
23
|
+
# 请求头
|
|
24
|
+
self.headers = headers
|
|
25
|
+
# 请求体JSON模式
|
|
26
|
+
self.input_body_json_schema = input_body_json_schema
|
|
27
|
+
# HTTP方法
|
|
28
|
+
self.method = method
|
|
29
|
+
# 协议名称
|
|
30
|
+
self.name = name
|
|
31
|
+
# 响应体JSON模式
|
|
32
|
+
self.output_body_json_schema = output_body_json_schema
|
|
33
|
+
# 协议路径
|
|
34
|
+
self.path = path
|
|
35
|
+
# 协议路径前缀
|
|
36
|
+
self.path_prefix = path_prefix
|
|
37
|
+
# 请求内容类型
|
|
38
|
+
self.request_content_type = request_content_type
|
|
39
|
+
# 响应内容类型
|
|
40
|
+
self.response_content_type = response_content_type
|
|
41
|
+
|
|
42
|
+
def validate(self):
|
|
43
|
+
pass
|
|
44
|
+
|
|
45
|
+
def to_map(self):
|
|
46
|
+
result = dict()
|
|
47
|
+
_map = super().to_map()
|
|
48
|
+
if _map is not None:
|
|
49
|
+
result = _map
|
|
50
|
+
if self.a_2aagent_card is not None:
|
|
51
|
+
result['A2AAgentCard'] = self.a_2aagent_card
|
|
52
|
+
|
|
53
|
+
if self.headers is not None:
|
|
54
|
+
result['headers'] = self.headers
|
|
55
|
+
|
|
56
|
+
if self.input_body_json_schema is not None:
|
|
57
|
+
result['inputBodyJsonSchema'] = self.input_body_json_schema
|
|
58
|
+
|
|
59
|
+
if self.method is not None:
|
|
60
|
+
result['method'] = self.method
|
|
61
|
+
|
|
62
|
+
if self.name is not None:
|
|
63
|
+
result['name'] = self.name
|
|
64
|
+
|
|
65
|
+
if self.output_body_json_schema is not None:
|
|
66
|
+
result['outputBodyJsonSchema'] = self.output_body_json_schema
|
|
67
|
+
|
|
68
|
+
if self.path is not None:
|
|
69
|
+
result['path'] = self.path
|
|
70
|
+
|
|
71
|
+
if self.path_prefix is not None:
|
|
72
|
+
result['pathPrefix'] = self.path_prefix
|
|
73
|
+
|
|
74
|
+
if self.request_content_type is not None:
|
|
75
|
+
result['requestContentType'] = self.request_content_type
|
|
76
|
+
|
|
77
|
+
if self.response_content_type is not None:
|
|
78
|
+
result['responseContentType'] = self.response_content_type
|
|
79
|
+
|
|
80
|
+
return result
|
|
81
|
+
|
|
82
|
+
def from_map(self, m: dict = None):
|
|
83
|
+
m = m or dict()
|
|
84
|
+
if m.get('A2AAgentCard') is not None:
|
|
85
|
+
self.a_2aagent_card = m.get('A2AAgentCard')
|
|
86
|
+
|
|
87
|
+
if m.get('headers') is not None:
|
|
88
|
+
self.headers = m.get('headers')
|
|
89
|
+
|
|
90
|
+
if m.get('inputBodyJsonSchema') is not None:
|
|
91
|
+
self.input_body_json_schema = m.get('inputBodyJsonSchema')
|
|
92
|
+
|
|
93
|
+
if m.get('method') is not None:
|
|
94
|
+
self.method = m.get('method')
|
|
95
|
+
|
|
96
|
+
if m.get('name') is not None:
|
|
97
|
+
self.name = m.get('name')
|
|
98
|
+
|
|
99
|
+
if m.get('outputBodyJsonSchema') is not None:
|
|
100
|
+
self.output_body_json_schema = m.get('outputBodyJsonSchema')
|
|
101
|
+
|
|
102
|
+
if m.get('path') is not None:
|
|
103
|
+
self.path = m.get('path')
|
|
104
|
+
|
|
105
|
+
if m.get('pathPrefix') is not None:
|
|
106
|
+
self.path_prefix = m.get('pathPrefix')
|
|
107
|
+
|
|
108
|
+
if m.get('requestContentType') is not None:
|
|
109
|
+
self.request_content_type = m.get('requestContentType')
|
|
110
|
+
|
|
111
|
+
if m.get('responseContentType') is not None:
|
|
112
|
+
self.response_content_type = m.get('responseContentType')
|
|
113
|
+
|
|
114
|
+
return self
|
|
115
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# This file is auto-generated, don't edit it. Thanks.
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from alibabacloud_agentrun20250910 import models as main_models
|
|
6
|
+
from darabonba.model import DaraModel
|
|
7
|
+
|
|
8
|
+
class UpdateCustomDomainRequest(DaraModel):
|
|
9
|
+
def __init__(
|
|
10
|
+
self,
|
|
11
|
+
body: main_models.UpdateCustomDomainInput = None,
|
|
12
|
+
):
|
|
13
|
+
self.body = body
|
|
14
|
+
|
|
15
|
+
def validate(self):
|
|
16
|
+
if self.body:
|
|
17
|
+
self.body.validate()
|
|
18
|
+
|
|
19
|
+
def to_map(self):
|
|
20
|
+
result = dict()
|
|
21
|
+
_map = super().to_map()
|
|
22
|
+
if _map is not None:
|
|
23
|
+
result = _map
|
|
24
|
+
if self.body is not None:
|
|
25
|
+
result['body'] = self.body.to_map()
|
|
26
|
+
|
|
27
|
+
return result
|
|
28
|
+
|
|
29
|
+
def from_map(self, m: dict = None):
|
|
30
|
+
m = m or dict()
|
|
31
|
+
if m.get('body') is not None:
|
|
32
|
+
temp_model = main_models.UpdateCustomDomainInput()
|
|
33
|
+
self.body = temp_model.from_map(m.get('body'))
|
|
34
|
+
|
|
35
|
+
return self
|
|
36
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# This file is auto-generated, don't edit it. Thanks.
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Dict
|
|
6
|
+
|
|
7
|
+
from alibabacloud_agentrun20250910 import models as main_models
|
|
8
|
+
from darabonba.model import DaraModel
|
|
9
|
+
|
|
10
|
+
class UpdateCustomDomainResponse(DaraModel):
|
|
11
|
+
def __init__(
|
|
12
|
+
self,
|
|
13
|
+
headers: Dict[str, str] = None,
|
|
14
|
+
status_code: int = None,
|
|
15
|
+
body: main_models.CustomDomainResult = None,
|
|
16
|
+
):
|
|
17
|
+
self.headers = headers
|
|
18
|
+
self.status_code = status_code
|
|
19
|
+
self.body = body
|
|
20
|
+
|
|
21
|
+
def validate(self):
|
|
22
|
+
if self.body:
|
|
23
|
+
self.body.validate()
|
|
24
|
+
|
|
25
|
+
def to_map(self):
|
|
26
|
+
result = dict()
|
|
27
|
+
_map = super().to_map()
|
|
28
|
+
if _map is not None:
|
|
29
|
+
result = _map
|
|
30
|
+
if self.headers is not None:
|
|
31
|
+
result['headers'] = self.headers
|
|
32
|
+
|
|
33
|
+
if self.status_code is not None:
|
|
34
|
+
result['statusCode'] = self.status_code
|
|
35
|
+
|
|
36
|
+
if self.body is not None:
|
|
37
|
+
result['body'] = self.body.to_map()
|
|
38
|
+
|
|
39
|
+
return result
|
|
40
|
+
|
|
41
|
+
def from_map(self, m: dict = None):
|
|
42
|
+
m = m or dict()
|
|
43
|
+
if m.get('headers') is not None:
|
|
44
|
+
self.headers = m.get('headers')
|
|
45
|
+
|
|
46
|
+
if m.get('statusCode') is not None:
|
|
47
|
+
self.status_code = m.get('statusCode')
|
|
48
|
+
|
|
49
|
+
if m.get('body') is not None:
|
|
50
|
+
temp_model = main_models.CustomDomainResult()
|
|
51
|
+
self.body = temp_model.from_map(m.get('body'))
|
|
52
|
+
|
|
53
|
+
return self
|
|
54
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# This file is auto-generated, don't edit it. Thanks.
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from alibabacloud_agentrun20250910 import models as main_models
|
|
6
|
+
from darabonba.model import DaraModel
|
|
7
|
+
|
|
8
|
+
class UpdateMemoryCollectionRequest(DaraModel):
|
|
9
|
+
def __init__(
|
|
10
|
+
self,
|
|
11
|
+
body: main_models.UpdateMemoryCollectionInput = None,
|
|
12
|
+
):
|
|
13
|
+
self.body = body
|
|
14
|
+
|
|
15
|
+
def validate(self):
|
|
16
|
+
if self.body:
|
|
17
|
+
self.body.validate()
|
|
18
|
+
|
|
19
|
+
def to_map(self):
|
|
20
|
+
result = dict()
|
|
21
|
+
_map = super().to_map()
|
|
22
|
+
if _map is not None:
|
|
23
|
+
result = _map
|
|
24
|
+
if self.body is not None:
|
|
25
|
+
result['body'] = self.body.to_map()
|
|
26
|
+
|
|
27
|
+
return result
|
|
28
|
+
|
|
29
|
+
def from_map(self, m: dict = None):
|
|
30
|
+
m = m or dict()
|
|
31
|
+
if m.get('body') is not None:
|
|
32
|
+
temp_model = main_models.UpdateMemoryCollectionInput()
|
|
33
|
+
self.body = temp_model.from_map(m.get('body'))
|
|
34
|
+
|
|
35
|
+
return self
|
|
36
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# This file is auto-generated, don't edit it. Thanks.
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Dict
|
|
6
|
+
|
|
7
|
+
from alibabacloud_agentrun20250910 import models as main_models
|
|
8
|
+
from darabonba.model import DaraModel
|
|
9
|
+
|
|
10
|
+
class UpdateMemoryCollectionResponse(DaraModel):
|
|
11
|
+
def __init__(
|
|
12
|
+
self,
|
|
13
|
+
headers: Dict[str, str] = None,
|
|
14
|
+
status_code: int = None,
|
|
15
|
+
body: main_models.MemoryCollectionResult = None,
|
|
16
|
+
):
|
|
17
|
+
self.headers = headers
|
|
18
|
+
self.status_code = status_code
|
|
19
|
+
self.body = body
|
|
20
|
+
|
|
21
|
+
def validate(self):
|
|
22
|
+
if self.body:
|
|
23
|
+
self.body.validate()
|
|
24
|
+
|
|
25
|
+
def to_map(self):
|
|
26
|
+
result = dict()
|
|
27
|
+
_map = super().to_map()
|
|
28
|
+
if _map is not None:
|
|
29
|
+
result = _map
|
|
30
|
+
if self.headers is not None:
|
|
31
|
+
result['headers'] = self.headers
|
|
32
|
+
|
|
33
|
+
if self.status_code is not None:
|
|
34
|
+
result['statusCode'] = self.status_code
|
|
35
|
+
|
|
36
|
+
if self.body is not None:
|
|
37
|
+
result['body'] = self.body.to_map()
|
|
38
|
+
|
|
39
|
+
return result
|
|
40
|
+
|
|
41
|
+
def from_map(self, m: dict = None):
|
|
42
|
+
m = m or dict()
|
|
43
|
+
if m.get('headers') is not None:
|
|
44
|
+
self.headers = m.get('headers')
|
|
45
|
+
|
|
46
|
+
if m.get('statusCode') is not None:
|
|
47
|
+
self.status_code = m.get('statusCode')
|
|
48
|
+
|
|
49
|
+
if m.get('body') is not None:
|
|
50
|
+
temp_model = main_models.MemoryCollectionResult()
|
|
51
|
+
self.body = temp_model.from_map(m.get('body'))
|
|
52
|
+
|
|
53
|
+
return self
|
|
54
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
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=yFu2H738gSSga9o0_8Ri0Sfb0kJjIoxVVygaABfVPTM,21
|
|
2
|
+
alibabacloud_agentrun20250910/client.py,sha256=e7eiJnwVihky1ytfIk-XCVZRo5KXCOrzFJaArTHkAuA,174573
|
|
3
|
+
alibabacloud_agentrun20250910/models/__init__.py,sha256=fRnzXzkQRg3PmLFQPVlMtUyKkwFxK8DPwVaSS3f1b5I,28980
|
|
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
6
|
alibabacloud_agentrun20250910/models/_agent_runtime.py,sha256=moHXc30FAsgeCrHyFYAHbW-IRjzul3TDPNuupLT_tUg,11130
|
|
@@ -56,6 +56,8 @@ alibabacloud_agentrun20250910/models/_create_credential_output.py,sha256=FRSdliK
|
|
|
56
56
|
alibabacloud_agentrun20250910/models/_create_credential_request.py,sha256=VCQGpwUV0I0_pN7hTajhf3r8Cl5Ojqei_Zb2mC5dwFE,943
|
|
57
57
|
alibabacloud_agentrun20250910/models/_create_credential_response.py,sha256=MhabK8x3bLxryKQIKmi-ON6GIoXl0PameQRmKoWOsd4,1461
|
|
58
58
|
alibabacloud_agentrun20250910/models/_create_custom_domain_input.py,sha256=6k-zQriuZjQ8SRsDjr7bfyIVDYJqCtKhyvsRXxiYomY,3391
|
|
59
|
+
alibabacloud_agentrun20250910/models/_create_custom_domain_request.py,sha256=ggfoVGk0qe1qFBoAebC3XuweSxJV0x-JiIO6BeHVst4,949
|
|
60
|
+
alibabacloud_agentrun20250910/models/_create_custom_domain_response.py,sha256=sQ_AYnLfKb5hgCfGA9SKd84h7DZqgCv3PNVYTcpehHk,1467
|
|
59
61
|
alibabacloud_agentrun20250910/models/_create_domain_input.py,sha256=95dn44TBqJmVc02pUYf5s9Y74m4U_JhL4B0DCERU0m4,1246
|
|
60
62
|
alibabacloud_agentrun20250910/models/_create_gateway_input.py,sha256=d3tsxbNYIoI1WvUb0-BZeNafD8bKI4D8L4rBfSijpS0,1800
|
|
61
63
|
alibabacloud_agentrun20250910/models/_create_gateway_target_input.py,sha256=RSXy3enaEoS7KXgmS2N1rvIcVh_kHakxeQmVNZeTvKM,1559
|
|
@@ -63,6 +65,8 @@ alibabacloud_agentrun20250910/models/_create_knowledge_base_input.py,sha256=LZdY
|
|
|
63
65
|
alibabacloud_agentrun20250910/models/_create_knowledge_base_request.py,sha256=hVvYuyJ1QP7T7vjTbG-M0KGdQpUJ8WQ_GAiKgD8Mips,952
|
|
64
66
|
alibabacloud_agentrun20250910/models/_create_knowledge_base_response.py,sha256=fcFENoUzKwDQVwcUaQ-4Jfri-p5-712LVbCpcKI5-7c,1470
|
|
65
67
|
alibabacloud_agentrun20250910/models/_create_memory_collection_input.py,sha256=j4Ao9QyE0NS8qE81cq2Z2qzZlAjOnjdwdr4FKsYZMOM,3704
|
|
68
|
+
alibabacloud_agentrun20250910/models/_create_memory_collection_request.py,sha256=XqycGcmgcTt_wwzy1Di33qeSO48yjyJm29Q2AzZjbV4,961
|
|
69
|
+
alibabacloud_agentrun20250910/models/_create_memory_collection_response.py,sha256=ZFdWsXAx9TeTRFYguO6u7k3_YxAe7RYsde3l0DDvFA8,1479
|
|
66
70
|
alibabacloud_agentrun20250910/models/_create_model_input.py,sha256=m7vqkBqrdwMArniy3g-5w7t2Fa15Jetg9pfFyphePUA,2057
|
|
67
71
|
alibabacloud_agentrun20250910/models/_create_model_proxy_input.py,sha256=cDrIuAQF_ig9OQWfqxo87dUACpzZ-e47cDhfqP211b0,5506
|
|
68
72
|
alibabacloud_agentrun20250910/models/_create_model_proxy_request.py,sha256=Kg24CWzy1AN0mEfd2bHIBwslzDT5cXzYBs7zwhXU-xo,943
|
|
@@ -96,8 +100,10 @@ alibabacloud_agentrun20250910/models/_delete_code_interpreter_out.py,sha256=czRq
|
|
|
96
100
|
alibabacloud_agentrun20250910/models/_delete_code_interpreter_response.py,sha256=DrDCKDMNicNmvovFOb61RATq1iwy14Q5JVx1_veezr8,1488
|
|
97
101
|
alibabacloud_agentrun20250910/models/_delete_code_interpreter_result.py,sha256=VowIx56dv0SR9fWoM4FYCBVlm8RdespSLk1pNJTD1o4,1636
|
|
98
102
|
alibabacloud_agentrun20250910/models/_delete_credential_response.py,sha256=tyvB3oz0nu5TQ-1BGkAZ4E89w-0VhX4Xw7aLPsgztg0,1461
|
|
103
|
+
alibabacloud_agentrun20250910/models/_delete_custom_domain_response.py,sha256=bDqE1NJkxOQDfl_9UCkQMroQZzmr_jSP77lBzqFrayU,1467
|
|
99
104
|
alibabacloud_agentrun20250910/models/_delete_knowledge_base_response.py,sha256=4RLKVoD8j0xk0IXQg1EgI94gbzZma2Yyi5amfvCSELM,1470
|
|
100
105
|
alibabacloud_agentrun20250910/models/_delete_knowledge_base_result.py,sha256=hR9wOgb0ZIUUVZlOKPPcg8SjN8uB54svpw5ODNhlxf0,1384
|
|
106
|
+
alibabacloud_agentrun20250910/models/_delete_memory_collection_response.py,sha256=roLiA95RoDutkctjQQHaGxXbWH_xpBCepxhG027w6SY,1479
|
|
101
107
|
alibabacloud_agentrun20250910/models/_delete_model_proxy_response.py,sha256=22VVsPXf2yH0a2wcz9bYkPj_NQdf5cBGzi2R3vHtyiI,1473
|
|
102
108
|
alibabacloud_agentrun20250910/models/_delete_model_proxy_result.py,sha256=crpX6vcZyKK9GxzkTHkl7QlfVxfQtz1zyTKNCi9eS1s,1375
|
|
103
109
|
alibabacloud_agentrun20250910/models/_delete_model_service_response.py,sha256=iPiw4_9QBG_bp0j8ycb5FNdPE9Ln7a5zbvgCkVbazWA,1479
|
|
@@ -125,7 +131,9 @@ alibabacloud_agentrun20250910/models/_get_code_interpreter_response.py,sha256=8z
|
|
|
125
131
|
alibabacloud_agentrun20250910/models/_get_code_interpreter_session_result.py,sha256=AE2Ka0IaowtIIPOGHtjpS4CSnM_b64jw6PneE5tIVsw,1554
|
|
126
132
|
alibabacloud_agentrun20250910/models/_get_credential_output.py,sha256=FnzX-nplZmv0-gEEjPu2Ml-lZYD9tOVmKtrRKQqqa-o,4310
|
|
127
133
|
alibabacloud_agentrun20250910/models/_get_credential_response.py,sha256=PAGW-oBh11gH_SwF6bZQMx9oMsNvSsFZAd8QzlnDApo,1458
|
|
134
|
+
alibabacloud_agentrun20250910/models/_get_custom_domain_response.py,sha256=DVBn87BLaR8zG2T4CYH51CKHT2mZn8erUZ22oxsGhn0,1464
|
|
128
135
|
alibabacloud_agentrun20250910/models/_get_knowledge_base_response.py,sha256=pEnbgkqWdObSs47Kz6MvDtUoohIIrERk8UiLbPQCEtM,1467
|
|
136
|
+
alibabacloud_agentrun20250910/models/_get_memory_collection_response.py,sha256=Vif24yiasCnjunPSJy3fzNNdTYxsWotuAxLYyn3m38A,1476
|
|
129
137
|
alibabacloud_agentrun20250910/models/_get_model_proxy_response.py,sha256=jxEH7QSIweAd3T10ntYbA5DAHcyuhAhML3fYdF8KyIo,1458
|
|
130
138
|
alibabacloud_agentrun20250910/models/_get_model_service_response.py,sha256=Zdxi3ciASKGpvUL5IDtfAd0eNpuhTSK44FTGzF0gHYs,1464
|
|
131
139
|
alibabacloud_agentrun20250910/models/_get_sandbox_response.py,sha256=j9LdT296OdGFlaHtmWJbxttMpoThruZXbZjQTTa_Vuk,1449
|
|
@@ -168,6 +176,8 @@ alibabacloud_agentrun20250910/models/_list_credentials_request.py,sha256=VEmAEcl
|
|
|
168
176
|
alibabacloud_agentrun20250910/models/_list_credentials_response.py,sha256=tChfzI7nCPeLeTLaBpFnd7msoy_VkShERfKKhzuPabI,1470
|
|
169
177
|
alibabacloud_agentrun20250910/models/_list_credentials_result.py,sha256=lmTmo-hiWzK2UCeXpTSy9VYcm_zzjE8NUQr1WdeDDGA,1396
|
|
170
178
|
alibabacloud_agentrun20250910/models/_list_custom_domains_output.py,sha256=mENio3QLIq7ViKLipvVH49B4U-INeE8NDtEAn8K2nPs,1887
|
|
179
|
+
alibabacloud_agentrun20250910/models/_list_custom_domains_request.py,sha256=BE4LRgAg8c5UeklmT9LWXu_VXXA8Q3zY454Fndj2QxM,1843
|
|
180
|
+
alibabacloud_agentrun20250910/models/_list_custom_domains_response.py,sha256=iXFopYoQ9fdRUUmvc7h0BksYKcIgDtuBZLxoI3fOpfs,1476
|
|
171
181
|
alibabacloud_agentrun20250910/models/_list_custom_domains_result.py,sha256=DBIkt5Gvno0QsBPAQw2iRYQKPDpZ1AmAEEYoZxydINk,1402
|
|
172
182
|
alibabacloud_agentrun20250910/models/_list_domains_output.py,sha256=crlJzolM2mmVOipHACsk9EREN26IEe6de8BXWzz8f6I,1928
|
|
173
183
|
alibabacloud_agentrun20250910/models/_list_gateways_output.py,sha256=dKk9pCCUNcj5JTXpOycTNo0sIl4zljHNjKMs19SccVA,1638
|
|
@@ -176,6 +186,8 @@ alibabacloud_agentrun20250910/models/_list_knowledge_bases_request.py,sha256=Ioq
|
|
|
176
186
|
alibabacloud_agentrun20250910/models/_list_knowledge_bases_response.py,sha256=JQtQ_kF--KlkmiUWxY0a5wGPqo5MbMqCX1uGhfW7gZM,1479
|
|
177
187
|
alibabacloud_agentrun20250910/models/_list_knowledge_bases_result.py,sha256=INAnzUrfWVZKFHRJrXJhOO1Zxa1lhOYOpbNGOQ4VBnc,1405
|
|
178
188
|
alibabacloud_agentrun20250910/models/_list_memory_collections_output.py,sha256=O_5DbQ56dq6syzgfD364hHMSNlNPQbFtnBBwTBqTtSk,1899
|
|
189
|
+
alibabacloud_agentrun20250910/models/_list_memory_collections_request.py,sha256=mQdYF3ArlEskuU7-Ri985MbvC09jzOqh7vbz6nIEg-w,1805
|
|
190
|
+
alibabacloud_agentrun20250910/models/_list_memory_collections_response.py,sha256=czAegrh0jA5sWeAqV1nVxDHV69fr7abT56Zao7tor6w,1488
|
|
179
191
|
alibabacloud_agentrun20250910/models/_list_memory_collections_result.py,sha256=tZVdv0EwHNrpiTKfeyRYBsV_osK5V5Unxnxa0bIjvys,1414
|
|
180
192
|
alibabacloud_agentrun20250910/models/_list_model_providers_request.py,sha256=mvOZ7Q-Ef174EFfPC5yMfyU8pe1-TFfSQOwh9BD4Lpc,1766
|
|
181
193
|
alibabacloud_agentrun20250910/models/_list_model_providers_response.py,sha256=LgFHTwkd065jJqxhqq2JmXIqi3c7XPHhtumZgAXlCGk,1491
|
|
@@ -230,7 +242,8 @@ alibabacloud_agentrun20250910/models/_path_config.py,sha256=gsxKMKDRFERdodkP5fzd
|
|
|
230
242
|
alibabacloud_agentrun20250910/models/_polar_fs_config.py,sha256=-4Y__TH_p76oDY8tHp_Mp7dOLRvidYMLzum2XjGz7dw,1720
|
|
231
243
|
alibabacloud_agentrun20250910/models/_polar_fs_mount_config.py,sha256=aiCn32fEq0B84sI6_FN7Whn2PocJindqU5dXgQQvHa8,1268
|
|
232
244
|
alibabacloud_agentrun20250910/models/_policy_config.py,sha256=PSZmvNSZFhkS8nbmXo0FyajPmt3EFDlkq1_lC_xF8LI,1493
|
|
233
|
-
alibabacloud_agentrun20250910/models/_protocol_configuration.py,sha256=
|
|
245
|
+
alibabacloud_agentrun20250910/models/_protocol_configuration.py,sha256=2JpBlGYccOF1GBV8s3r-zwA1_QROuIuItjnYal-IaRg,1568
|
|
246
|
+
alibabacloud_agentrun20250910/models/_protocol_settings.py,sha256=Mv1SjQohiInoeLqWAN7hRoSt-7dNwjWrcqNEpf1KzDY,3575
|
|
234
247
|
alibabacloud_agentrun20250910/models/_provider_settings.py,sha256=pjBN9QUfQlSm61cuHGF0eSJLfqxfnMWfZTZxxRFStzU,1261
|
|
235
248
|
alibabacloud_agentrun20250910/models/_proxy_config.py,sha256=YcuwmE0dbGrkrQ9gI7vG9OOL-xajXiBUNwxALdRU1mQ,11689
|
|
236
249
|
alibabacloud_agentrun20250910/models/_publish_runtime_version_input.py,sha256=5IAYZaKs0XkWecNVhC21E7u-XOieyh84PRXdvZAXc9c,1108
|
|
@@ -277,11 +290,15 @@ alibabacloud_agentrun20250910/models/_update_credential_output.py,sha256=SeCTW3R
|
|
|
277
290
|
alibabacloud_agentrun20250910/models/_update_credential_request.py,sha256=R0vUVYN1ZvIb8nueiIeM0apQPEWQGo0aGQo8A6-J4oA,943
|
|
278
291
|
alibabacloud_agentrun20250910/models/_update_credential_response.py,sha256=hvC4zF9g8Iabm3KRA1NHx92vovzclH-YbTpKGJYZdFE,1461
|
|
279
292
|
alibabacloud_agentrun20250910/models/_update_custom_domain_input.py,sha256=9s-lc2oCE1ac7PbyffZiEY--RqrmlWTGWQj3owvTQB8,2680
|
|
293
|
+
alibabacloud_agentrun20250910/models/_update_custom_domain_request.py,sha256=fvvLjhozP8EcnjsAGOoFJT2whXf5xsTpugqKY7nUJZE,949
|
|
294
|
+
alibabacloud_agentrun20250910/models/_update_custom_domain_response.py,sha256=Zj6aHYl3o3b2zQWe0kSlW-5QhLQD4uafGIx_2e1Xoos,1467
|
|
280
295
|
alibabacloud_agentrun20250910/models/_update_domain_input.py,sha256=TgDFH6dwozcqm1_CacVPmoFBjg3lx2t62GqAKfd1Ngs,1044
|
|
281
296
|
alibabacloud_agentrun20250910/models/_update_knowledge_base_input.py,sha256=DVUhIe3ruzDlwco2GN1VwP_q7roa1leItSJ29a23_lM,1762
|
|
282
297
|
alibabacloud_agentrun20250910/models/_update_knowledge_base_request.py,sha256=-hChEQCeVVdPjXtcagu_lf3h2LB1QZnRxbzRSivYLZw,952
|
|
283
298
|
alibabacloud_agentrun20250910/models/_update_knowledge_base_response.py,sha256=FGwCYz3wsE3TtV-oXKAoz9EumcARa2BeEhVDpah5MMA,1470
|
|
284
299
|
alibabacloud_agentrun20250910/models/_update_memory_collection_input.py,sha256=qANbRzKqKN2Xa_YxqNZvtbCEMS-zzpF0xND8IbQpeAk,3144
|
|
300
|
+
alibabacloud_agentrun20250910/models/_update_memory_collection_request.py,sha256=uiuGtgTfu3aVDFEhvTq4Dq__WM8XoSQ2oCLsVMSywqo,961
|
|
301
|
+
alibabacloud_agentrun20250910/models/_update_memory_collection_response.py,sha256=PRPldmAd9X3P_FUAr419DCrAxPBmcHokE-dNOVzZQAA,1479
|
|
285
302
|
alibabacloud_agentrun20250910/models/_update_model_input.py,sha256=oHfEY3WTXojplIdrrIHuEMnnWq1SijdmkCGXneU5MF0,2057
|
|
286
303
|
alibabacloud_agentrun20250910/models/_update_model_proxy_input.py,sha256=yfgL9WtvotC4eToKnnVOHDcU8Y8gIB7kByGiuBkhlvc,3480
|
|
287
304
|
alibabacloud_agentrun20250910/models/_update_model_proxy_request.py,sha256=V9-TXkJkriTB5reLf1CD8w8qKfn3-bVR2q2QPDQygQo,943
|
|
@@ -299,8 +316,8 @@ alibabacloud_agentrun20250910/models/_update_tool_output.py,sha256=8Qy6IF4Tv61KC
|
|
|
299
316
|
alibabacloud_agentrun20250910/models/_vector_store_config.py,sha256=rvEBQNPeVcXQmBfJHVo2vpQbTR4u9-xerWNUEa2HLMg,2685
|
|
300
317
|
alibabacloud_agentrun20250910/models/_version_weight.py,sha256=b8Q6LkLBbwREUz5u4gksWiZJOR3KnwvQnmGKZmBRhfE,1035
|
|
301
318
|
alibabacloud_agentrun20250910/models/_view_port_configuration.py,sha256=9OJd_njOHJISm9XTCXbpPTw78eKbcn0h8NPI_51KqgI,1115
|
|
302
|
-
alibabacloud_agentrun20250910-5.
|
|
303
|
-
alibabacloud_agentrun20250910-5.
|
|
304
|
-
alibabacloud_agentrun20250910-5.
|
|
305
|
-
alibabacloud_agentrun20250910-5.
|
|
306
|
-
alibabacloud_agentrun20250910-5.
|
|
319
|
+
alibabacloud_agentrun20250910-5.3.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
320
|
+
alibabacloud_agentrun20250910-5.3.0.dist-info/METADATA,sha256=r2ulefedko8L34DYtdxPw9EOWcXHSJGsBqN8hSyRMNQ,2324
|
|
321
|
+
alibabacloud_agentrun20250910-5.3.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
322
|
+
alibabacloud_agentrun20250910-5.3.0.dist-info/top_level.txt,sha256=52ubthzYJLT_H920wO8t0i9HV90alDqttDu0fv3l1aM,30
|
|
323
|
+
alibabacloud_agentrun20250910-5.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|