alibabacloud-agentrun20250910 5.0.0__py3-none-any.whl → 5.2.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.
Files changed (42) hide show
  1. alibabacloud_agentrun20250910/__init__.py +1 -1
  2. alibabacloud_agentrun20250910/client.py +728 -0
  3. alibabacloud_agentrun20250910/models/__init__.py +70 -0
  4. alibabacloud_agentrun20250910/models/_create_custom_domain_input.py +8 -0
  5. alibabacloud_agentrun20250910/models/_create_knowledge_base_input.py +78 -0
  6. alibabacloud_agentrun20250910/models/_create_knowledge_base_request.py +36 -0
  7. alibabacloud_agentrun20250910/models/_create_knowledge_base_response.py +54 -0
  8. alibabacloud_agentrun20250910/models/_create_memory_collection_input.py +101 -0
  9. alibabacloud_agentrun20250910/models/_create_memory_collection_request.py +36 -0
  10. alibabacloud_agentrun20250910/models/_create_memory_collection_response.py +54 -0
  11. alibabacloud_agentrun20250910/models/_custom_domain.py +8 -0
  12. alibabacloud_agentrun20250910/models/_delete_knowledge_base_response.py +54 -0
  13. alibabacloud_agentrun20250910/models/_delete_knowledge_base_result.py +52 -0
  14. alibabacloud_agentrun20250910/models/_delete_memory_collection_response.py +54 -0
  15. alibabacloud_agentrun20250910/models/_embedder_config.py +71 -0
  16. alibabacloud_agentrun20250910/models/_get_knowledge_base_response.py +54 -0
  17. alibabacloud_agentrun20250910/models/_get_memory_collection_response.py +54 -0
  18. alibabacloud_agentrun20250910/models/_knowledge_base.py +99 -0
  19. alibabacloud_agentrun20250910/models/_knowledge_base_result.py +52 -0
  20. alibabacloud_agentrun20250910/models/_list_knowledge_bases_output.py +68 -0
  21. alibabacloud_agentrun20250910/models/_list_knowledge_bases_request.py +49 -0
  22. alibabacloud_agentrun20250910/models/_list_knowledge_bases_response.py +54 -0
  23. alibabacloud_agentrun20250910/models/_list_knowledge_bases_result.py +52 -0
  24. alibabacloud_agentrun20250910/models/_list_memory_collections_output.py +68 -0
  25. alibabacloud_agentrun20250910/models/_list_memory_collections_request.py +65 -0
  26. alibabacloud_agentrun20250910/models/_list_memory_collections_response.py +54 -0
  27. alibabacloud_agentrun20250910/models/_list_memory_collections_result.py +52 -0
  28. alibabacloud_agentrun20250910/models/_llmconfig.py +71 -0
  29. alibabacloud_agentrun20250910/models/_memory_collection.py +117 -0
  30. alibabacloud_agentrun20250910/models/_memory_collection_result.py +52 -0
  31. alibabacloud_agentrun20250910/models/_update_knowledge_base_input.py +59 -0
  32. alibabacloud_agentrun20250910/models/_update_knowledge_base_request.py +36 -0
  33. alibabacloud_agentrun20250910/models/_update_knowledge_base_response.py +54 -0
  34. alibabacloud_agentrun20250910/models/_update_memory_collection_input.py +85 -0
  35. alibabacloud_agentrun20250910/models/_update_memory_collection_request.py +36 -0
  36. alibabacloud_agentrun20250910/models/_update_memory_collection_response.py +54 -0
  37. alibabacloud_agentrun20250910/models/_vector_store_config.py +95 -0
  38. {alibabacloud_agentrun20250910-5.0.0.dist-info → alibabacloud_agentrun20250910-5.2.0.dist-info}/METADATA +1 -1
  39. {alibabacloud_agentrun20250910-5.0.0.dist-info → alibabacloud_agentrun20250910-5.2.0.dist-info}/RECORD +42 -10
  40. {alibabacloud_agentrun20250910-5.0.0.dist-info → alibabacloud_agentrun20250910-5.2.0.dist-info}/LICENSE +0 -0
  41. {alibabacloud_agentrun20250910-5.0.0.dist-info → alibabacloud_agentrun20250910-5.2.0.dist-info}/WHEEL +0 -0
  42. {alibabacloud_agentrun20250910-5.0.0.dist-info → alibabacloud_agentrun20250910-5.2.0.dist-info}/top_level.txt +0 -0
@@ -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 UpdateKnowledgeBaseResponse(DaraModel):
11
+ def __init__(
12
+ self,
13
+ headers: Dict[str, str] = None,
14
+ status_code: int = None,
15
+ body: main_models.KnowledgeBaseResult = 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.KnowledgeBaseResult()
51
+ self.body = temp_model.from_map(m.get('body'))
52
+
53
+ return self
54
+
@@ -0,0 +1,85 @@
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 UpdateMemoryCollectionInput(DaraModel):
9
+ def __init__(
10
+ self,
11
+ description: str = None,
12
+ embedder_config: main_models.EmbedderConfig = None,
13
+ execution_role_arn: str = None,
14
+ llm_config: main_models.LLMConfig = None,
15
+ network_configuration: main_models.NetworkConfiguration = None,
16
+ vector_store_config: main_models.VectorStoreConfig = None,
17
+ ):
18
+ self.description = description
19
+ self.embedder_config = embedder_config
20
+ self.execution_role_arn = execution_role_arn
21
+ self.llm_config = llm_config
22
+ self.network_configuration = network_configuration
23
+ self.vector_store_config = vector_store_config
24
+
25
+ def validate(self):
26
+ if self.embedder_config:
27
+ self.embedder_config.validate()
28
+ if self.llm_config:
29
+ self.llm_config.validate()
30
+ if self.network_configuration:
31
+ self.network_configuration.validate()
32
+ if self.vector_store_config:
33
+ self.vector_store_config.validate()
34
+
35
+ def to_map(self):
36
+ result = dict()
37
+ _map = super().to_map()
38
+ if _map is not None:
39
+ result = _map
40
+ if self.description is not None:
41
+ result['description'] = self.description
42
+
43
+ if self.embedder_config is not None:
44
+ result['embedderConfig'] = self.embedder_config.to_map()
45
+
46
+ if self.execution_role_arn is not None:
47
+ result['executionRoleArn'] = self.execution_role_arn
48
+
49
+ if self.llm_config is not None:
50
+ result['llmConfig'] = self.llm_config.to_map()
51
+
52
+ if self.network_configuration is not None:
53
+ result['networkConfiguration'] = self.network_configuration.to_map()
54
+
55
+ if self.vector_store_config is not None:
56
+ result['vectorStoreConfig'] = self.vector_store_config.to_map()
57
+
58
+ return result
59
+
60
+ def from_map(self, m: dict = None):
61
+ m = m or dict()
62
+ if m.get('description') is not None:
63
+ self.description = m.get('description')
64
+
65
+ if m.get('embedderConfig') is not None:
66
+ temp_model = main_models.EmbedderConfig()
67
+ self.embedder_config = temp_model.from_map(m.get('embedderConfig'))
68
+
69
+ if m.get('executionRoleArn') is not None:
70
+ self.execution_role_arn = m.get('executionRoleArn')
71
+
72
+ if m.get('llmConfig') is not None:
73
+ temp_model = main_models.LLMConfig()
74
+ self.llm_config = temp_model.from_map(m.get('llmConfig'))
75
+
76
+ if m.get('networkConfiguration') is not None:
77
+ temp_model = main_models.NetworkConfiguration()
78
+ self.network_configuration = temp_model.from_map(m.get('networkConfiguration'))
79
+
80
+ if m.get('vectorStoreConfig') is not None:
81
+ temp_model = main_models.VectorStoreConfig()
82
+ self.vector_store_config = temp_model.from_map(m.get('vectorStoreConfig'))
83
+
84
+ return self
85
+
@@ -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
+
@@ -0,0 +1,95 @@
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 VectorStoreConfig(DaraModel):
9
+ def __init__(
10
+ self,
11
+ config: main_models.VectorStoreConfigConfig = None,
12
+ provider: str = None,
13
+ ):
14
+ self.config = config
15
+ self.provider = provider
16
+
17
+ def validate(self):
18
+ if self.config:
19
+ self.config.validate()
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.config is not None:
27
+ result['config'] = self.config.to_map()
28
+
29
+ if self.provider is not None:
30
+ result['provider'] = self.provider
31
+
32
+ return result
33
+
34
+ def from_map(self, m: dict = None):
35
+ m = m or dict()
36
+ if m.get('config') is not None:
37
+ temp_model = main_models.VectorStoreConfigConfig()
38
+ self.config = temp_model.from_map(m.get('config'))
39
+
40
+ if m.get('provider') is not None:
41
+ self.provider = m.get('provider')
42
+
43
+ return self
44
+
45
+ class VectorStoreConfigConfig(DaraModel):
46
+ def __init__(
47
+ self,
48
+ collection_name: str = None,
49
+ endpoint: str = None,
50
+ instance_name: str = None,
51
+ vector_dimension: int = None,
52
+ ):
53
+ self.collection_name = collection_name
54
+ self.endpoint = endpoint
55
+ self.instance_name = instance_name
56
+ self.vector_dimension = vector_dimension
57
+
58
+ def validate(self):
59
+ pass
60
+
61
+ def to_map(self):
62
+ result = dict()
63
+ _map = super().to_map()
64
+ if _map is not None:
65
+ result = _map
66
+ if self.collection_name is not None:
67
+ result['collectionName'] = self.collection_name
68
+
69
+ if self.endpoint is not None:
70
+ result['endpoint'] = self.endpoint
71
+
72
+ if self.instance_name is not None:
73
+ result['instanceName'] = self.instance_name
74
+
75
+ if self.vector_dimension is not None:
76
+ result['vectorDimension'] = self.vector_dimension
77
+
78
+ return result
79
+
80
+ def from_map(self, m: dict = None):
81
+ m = m or dict()
82
+ if m.get('collectionName') is not None:
83
+ self.collection_name = m.get('collectionName')
84
+
85
+ if m.get('endpoint') is not None:
86
+ self.endpoint = m.get('endpoint')
87
+
88
+ if m.get('instanceName') is not None:
89
+ self.instance_name = m.get('instanceName')
90
+
91
+ if m.get('vectorDimension') is not None:
92
+ self.vector_dimension = m.get('vectorDimension')
93
+
94
+ return self
95
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-agentrun20250910
3
- Version: 5.0.0
3
+ Version: 5.2.0
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
@@ -1,6 +1,6 @@
1
- alibabacloud_agentrun20250910/__init__.py,sha256=N8pD9_ASuFWBcLPnEfCtCRdScc4QgDFxHmk8kQfA2ww,21
2
- alibabacloud_agentrun20250910/client.py,sha256=xlJNuwov1UD-VpfwmcJ5oYsyvDdoql0ApE60m7Lohzs,134459
3
- alibabacloud_agentrun20250910/models/__init__.py,sha256=ogpSKmqsbO4RwCwrfTfen2XRyOYHGLDrcBLqfj3YakA,24759
1
+ alibabacloud_agentrun20250910/__init__.py,sha256=H1BfyQXN0kjiCOFO7oS0LZ5Frhrg7vjKO15VHm7ua8E,21
2
+ alibabacloud_agentrun20250910/client.py,sha256=fZg31kTUVjSTHWT2jc-tmEvTpHP7-kX4txLS9lUq33g,161337
3
+ alibabacloud_agentrun20250910/models/__init__.py,sha256=fTF9apGZaHBfJdk16XQpcseWOHesUgf_E_ru9rRqKrc,28109
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
@@ -55,10 +55,16 @@ alibabacloud_agentrun20250910/models/_create_credential_input.py,sha256=_fI4Fheo
55
55
  alibabacloud_agentrun20250910/models/_create_credential_output.py,sha256=FRSdliKRY471jq2O4y_9i09z8VMxn5ElTt6-WMA3cM0,4313
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
- alibabacloud_agentrun20250910/models/_create_custom_domain_input.py,sha256=ECoUvvx9jG7NrirApANbugjNePYxWPvQI9RGCpV31PY,3129
58
+ alibabacloud_agentrun20250910/models/_create_custom_domain_input.py,sha256=6k-zQriuZjQ8SRsDjr7bfyIVDYJqCtKhyvsRXxiYomY,3391
59
59
  alibabacloud_agentrun20250910/models/_create_domain_input.py,sha256=95dn44TBqJmVc02pUYf5s9Y74m4U_JhL4B0DCERU0m4,1246
60
60
  alibabacloud_agentrun20250910/models/_create_gateway_input.py,sha256=d3tsxbNYIoI1WvUb0-BZeNafD8bKI4D8L4rBfSijpS0,1800
61
61
  alibabacloud_agentrun20250910/models/_create_gateway_target_input.py,sha256=RSXy3enaEoS7KXgmS2N1rvIcVh_kHakxeQmVNZeTvKM,1559
62
+ alibabacloud_agentrun20250910/models/_create_knowledge_base_input.py,sha256=LZdYT6TUriyrAp0P1m5kg6JpmgsqVjj4HQ2CxWIVIlM,2445
63
+ alibabacloud_agentrun20250910/models/_create_knowledge_base_request.py,sha256=hVvYuyJ1QP7T7vjTbG-M0KGdQpUJ8WQ_GAiKgD8Mips,952
64
+ alibabacloud_agentrun20250910/models/_create_knowledge_base_response.py,sha256=fcFENoUzKwDQVwcUaQ-4Jfri-p5-712LVbCpcKI5-7c,1470
65
+ alibabacloud_agentrun20250910/models/_create_memory_collection_input.py,sha256=j4Ao9QyE0NS8qE81cq2Z2qzZlAjOnjdwdr4FKsYZMOM,3704
66
+ alibabacloud_agentrun20250910/models/_create_memory_collection_request.py,sha256=XqycGcmgcTt_wwzy1Di33qeSO48yjyJm29Q2AzZjbV4,961
67
+ alibabacloud_agentrun20250910/models/_create_memory_collection_response.py,sha256=ZFdWsXAx9TeTRFYguO6u7k3_YxAe7RYsde3l0DDvFA8,1479
62
68
  alibabacloud_agentrun20250910/models/_create_model_input.py,sha256=m7vqkBqrdwMArniy3g-5w7t2Fa15Jetg9pfFyphePUA,2057
63
69
  alibabacloud_agentrun20250910/models/_create_model_proxy_input.py,sha256=cDrIuAQF_ig9OQWfqxo87dUACpzZ-e47cDhfqP211b0,5506
64
70
  alibabacloud_agentrun20250910/models/_create_model_proxy_request.py,sha256=Kg24CWzy1AN0mEfd2bHIBwslzDT5cXzYBs7zwhXU-xo,943
@@ -80,7 +86,7 @@ alibabacloud_agentrun20250910/models/_credential_configuration.py,sha256=CpVYGP_
80
86
  alibabacloud_agentrun20250910/models/_credential_list_item.py,sha256=BqUhlw0iRtQBuCtnfO_8maH_d4AGZc0qSLmWksHgrAc,2879
81
87
  alibabacloud_agentrun20250910/models/_credential_public_config.py,sha256=eWHQYdDRWGRDGjNEaS50ZYnBlDjy_YG9jAbn-xEeOM4,4543
82
88
  alibabacloud_agentrun20250910/models/_credential_result.py,sha256=1WxIKreDhLM51pQcO-USuP7q53dmussYoAmbZhpPH30,1369
83
- alibabacloud_agentrun20250910/models/_custom_domain.py,sha256=Xe1IjybiAWz7uaNHjC5gZSHoPAg-uGaV4HGeAVIgccQ,3572
89
+ alibabacloud_agentrun20250910/models/_custom_domain.py,sha256=Qvdrx9sCyTgEslKVGWJC5oZbA0Z2xHFGSpqIUTkzWHw,3834
84
90
  alibabacloud_agentrun20250910/models/_custom_domain_result.py,sha256=hOiGHrKRRB4nLExlEY4fM1n_TAxCDef9P1g5vpvRKvc,1612
85
91
  alibabacloud_agentrun20250910/models/_custom_runtime_config.py,sha256=tIiB-cqdlUSLsW3HW0Z8oTf77p-VyV88JXeZNaHandE,1180
86
92
  alibabacloud_agentrun20250910/models/_delete_agent_runtime_endpoint_response.py,sha256=tBCbmjQ4j135W1u3p6Migp5YsLjnFYeYqW3CmrVBXwI,1491
@@ -92,6 +98,9 @@ alibabacloud_agentrun20250910/models/_delete_code_interpreter_out.py,sha256=czRq
92
98
  alibabacloud_agentrun20250910/models/_delete_code_interpreter_response.py,sha256=DrDCKDMNicNmvovFOb61RATq1iwy14Q5JVx1_veezr8,1488
93
99
  alibabacloud_agentrun20250910/models/_delete_code_interpreter_result.py,sha256=VowIx56dv0SR9fWoM4FYCBVlm8RdespSLk1pNJTD1o4,1636
94
100
  alibabacloud_agentrun20250910/models/_delete_credential_response.py,sha256=tyvB3oz0nu5TQ-1BGkAZ4E89w-0VhX4Xw7aLPsgztg0,1461
101
+ alibabacloud_agentrun20250910/models/_delete_knowledge_base_response.py,sha256=4RLKVoD8j0xk0IXQg1EgI94gbzZma2Yyi5amfvCSELM,1470
102
+ alibabacloud_agentrun20250910/models/_delete_knowledge_base_result.py,sha256=hR9wOgb0ZIUUVZlOKPPcg8SjN8uB54svpw5ODNhlxf0,1384
103
+ alibabacloud_agentrun20250910/models/_delete_memory_collection_response.py,sha256=roLiA95RoDutkctjQQHaGxXbWH_xpBCepxhG027w6SY,1479
95
104
  alibabacloud_agentrun20250910/models/_delete_model_proxy_response.py,sha256=22VVsPXf2yH0a2wcz9bYkPj_NQdf5cBGzi2R3vHtyiI,1473
96
105
  alibabacloud_agentrun20250910/models/_delete_model_proxy_result.py,sha256=crpX6vcZyKK9GxzkTHkl7QlfVxfQtz1zyTKNCi9eS1s,1375
97
106
  alibabacloud_agentrun20250910/models/_delete_model_service_response.py,sha256=iPiw4_9QBG_bp0j8ycb5FNdPE9Ln7a5zbvgCkVbazWA,1479
@@ -102,6 +111,7 @@ alibabacloud_agentrun20250910/models/_delete_template_response.py,sha256=bycU49E
102
111
  alibabacloud_agentrun20250910/models/_delete_template_result.py,sha256=kQmQR40OjYEkVNobsN2ifTEamgd4u_hKoW9lXREF9G8,1453
103
112
  alibabacloud_agentrun20250910/models/_deregister_service_input.py,sha256=e2ezJeyTtt2tf0Wbe9IAqF8NSPN-EmqoYRe0PNrqB8w,884
104
113
  alibabacloud_agentrun20250910/models/_domain_info.py,sha256=aNRVg-C6sNR172ruwTBIwRgcE1Qv5XiObmXpuYAQTB8,1483
114
+ alibabacloud_agentrun20250910/models/_embedder_config.py,sha256=lbrbh9vD87IXhwRH2c6eJ_LZ8lgb6W0viv1xfm18d8s,1845
105
115
  alibabacloud_agentrun20250910/models/_error_result.py,sha256=DLboElH42NV4XZMfR97zHWfBXLo5PwmpU65EEXmj2fk,1411
106
116
  alibabacloud_agentrun20250910/models/_fclink_config.py,sha256=6x23i_BsHMhFc2lrekDLDnaw8whREh5h7FAMsdGAyXU,1012
107
117
  alibabacloud_agentrun20250910/models/_gateway.py,sha256=uEN1q41n9nOYrNz2VhPeVq8x4c20Vr8TykfoO4-TSqQ,2221
@@ -118,6 +128,8 @@ alibabacloud_agentrun20250910/models/_get_code_interpreter_response.py,sha256=8z
118
128
  alibabacloud_agentrun20250910/models/_get_code_interpreter_session_result.py,sha256=AE2Ka0IaowtIIPOGHtjpS4CSnM_b64jw6PneE5tIVsw,1554
119
129
  alibabacloud_agentrun20250910/models/_get_credential_output.py,sha256=FnzX-nplZmv0-gEEjPu2Ml-lZYD9tOVmKtrRKQqqa-o,4310
120
130
  alibabacloud_agentrun20250910/models/_get_credential_response.py,sha256=PAGW-oBh11gH_SwF6bZQMx9oMsNvSsFZAd8QzlnDApo,1458
131
+ alibabacloud_agentrun20250910/models/_get_knowledge_base_response.py,sha256=pEnbgkqWdObSs47Kz6MvDtUoohIIrERk8UiLbPQCEtM,1467
132
+ alibabacloud_agentrun20250910/models/_get_memory_collection_response.py,sha256=Vif24yiasCnjunPSJy3fzNNdTYxsWotuAxLYyn3m38A,1476
121
133
  alibabacloud_agentrun20250910/models/_get_model_proxy_response.py,sha256=jxEH7QSIweAd3T10ntYbA5DAHcyuhAhML3fYdF8KyIo,1458
122
134
  alibabacloud_agentrun20250910/models/_get_model_service_response.py,sha256=Zdxi3ciASKGpvUL5IDtfAd0eNpuhTSK44FTGzF0gHYs,1464
123
135
  alibabacloud_agentrun20250910/models/_get_sandbox_response.py,sha256=j9LdT296OdGFlaHtmWJbxttMpoThruZXbZjQTTa_Vuk,1449
@@ -126,6 +138,8 @@ alibabacloud_agentrun20250910/models/_get_tool_output.py,sha256=GpN-hpnSfjK8UZgC
126
138
  alibabacloud_agentrun20250910/models/_gray_traffic_weight.py,sha256=O8jXbICy6Jc2T6tleH-A9QKWfM4IlpYCwVD7Ezbg-m4,1027
127
139
  alibabacloud_agentrun20250910/models/_health_check_config.py,sha256=YiBeecqGCicbk2CdXFvs9cCTnrF-CEN8o-_RneuQqrs,2742
128
140
  alibabacloud_agentrun20250910/models/_health_check_configuration.py,sha256=llysnUqbnOQR59EUIVbmzqenzQXmrhTSzim-oWFCzmY,2749
141
+ alibabacloud_agentrun20250910/models/_knowledge_base.py,sha256=z8SZd5kCQACULAKP-cedvNAGcH4L9c6vawGalqA-cRU,3181
142
+ alibabacloud_agentrun20250910/models/_knowledge_base_result.py,sha256=yIlG3ecsiVo6wseK62yXsz3FetpeC-MVW4pkP0S8dO8,1378
129
143
  alibabacloud_agentrun20250910/models/_list_agent_runtime_endpoints_input.py,sha256=wKfvbnfybJv6rh4vEUNp1-SJBh8miF2q0udgniycFoY,1677
130
144
  alibabacloud_agentrun20250910/models/_list_agent_runtime_endpoints_output.py,sha256=i_LcnsfHYRy8dNgnEs56-JHZB1Q4YhZ6WCOjLtsz29o,1911
131
145
  alibabacloud_agentrun20250910/models/_list_agent_runtime_endpoints_request.py,sha256=So0Ex3kt6qomGhtKyMiWFA6qhcfMCei5npiLJsrHp04,1763
@@ -161,6 +175,14 @@ alibabacloud_agentrun20250910/models/_list_custom_domains_output.py,sha256=mENio
161
175
  alibabacloud_agentrun20250910/models/_list_custom_domains_result.py,sha256=DBIkt5Gvno0QsBPAQw2iRYQKPDpZ1AmAEEYoZxydINk,1402
162
176
  alibabacloud_agentrun20250910/models/_list_domains_output.py,sha256=crlJzolM2mmVOipHACsk9EREN26IEe6de8BXWzz8f6I,1928
163
177
  alibabacloud_agentrun20250910/models/_list_gateways_output.py,sha256=dKk9pCCUNcj5JTXpOycTNo0sIl4zljHNjKMs19SccVA,1638
178
+ alibabacloud_agentrun20250910/models/_list_knowledge_bases_output.py,sha256=8xwUcLI8t_XuRMvKOZcXkPXIIt3tvV92o0UDY4CiFmw,1890
179
+ alibabacloud_agentrun20250910/models/_list_knowledge_bases_request.py,sha256=IoqKxTox0PcHAoMjmdoRAs6Q1g02sRNrLoe9it6yZL4,1260
180
+ alibabacloud_agentrun20250910/models/_list_knowledge_bases_response.py,sha256=JQtQ_kF--KlkmiUWxY0a5wGPqo5MbMqCX1uGhfW7gZM,1479
181
+ alibabacloud_agentrun20250910/models/_list_knowledge_bases_result.py,sha256=INAnzUrfWVZKFHRJrXJhOO1Zxa1lhOYOpbNGOQ4VBnc,1405
182
+ alibabacloud_agentrun20250910/models/_list_memory_collections_output.py,sha256=O_5DbQ56dq6syzgfD364hHMSNlNPQbFtnBBwTBqTtSk,1899
183
+ alibabacloud_agentrun20250910/models/_list_memory_collections_request.py,sha256=mQdYF3ArlEskuU7-Ri985MbvC09jzOqh7vbz6nIEg-w,1805
184
+ alibabacloud_agentrun20250910/models/_list_memory_collections_response.py,sha256=czAegrh0jA5sWeAqV1nVxDHV69fr7abT56Zao7tor6w,1488
185
+ alibabacloud_agentrun20250910/models/_list_memory_collections_result.py,sha256=tZVdv0EwHNrpiTKfeyRYBsV_osK5V5Unxnxa0bIjvys,1414
164
186
  alibabacloud_agentrun20250910/models/_list_model_providers_request.py,sha256=mvOZ7Q-Ef174EFfPC5yMfyU8pe1-TFfSQOwh9BD4Lpc,1766
165
187
  alibabacloud_agentrun20250910/models/_list_model_providers_response.py,sha256=LgFHTwkd065jJqxhqq2JmXIqi3c7XPHhtumZgAXlCGk,1491
166
188
  alibabacloud_agentrun20250910/models/_list_model_providers_response_body.py,sha256=lH71BwnTEXDJ6m465HT1-VoLZH0vMxXVmHzHgB-Zsts,5071
@@ -182,6 +204,7 @@ alibabacloud_agentrun20250910/models/_list_templates_response.py,sha256=USPukk8h
182
204
  alibabacloud_agentrun20250910/models/_list_templates_result.py,sha256=gEaVAhhPuT-eAO5zdMafpIKh59j8JYePUIhPXJhZ6zU,1624
183
205
  alibabacloud_agentrun20250910/models/_list_tools_output.py,sha256=lTFralt2CVEVogN0uJSYuP_EbKk5wmOt36gLQH8TV0s,1839
184
206
  alibabacloud_agentrun20250910/models/_llmapiconfiguration.py,sha256=F5S8kt6umcbLEuDSW6pVRVuggut3yFSeMdULtHJDPCc,3487
207
+ alibabacloud_agentrun20250910/models/_llmconfig.py,sha256=IRURTgyqyCNpzcZ4U2xVp33X9YITyxUKuM79-8-I4x0,1825
185
208
  alibabacloud_agentrun20250910/models/_llmdeploy_config.py,sha256=erASnp2oRiW8LYeuqfHWubnvjHL5B_3jja2z6wADHes,3128
186
209
  alibabacloud_agentrun20250910/models/_log_configuration.py,sha256=BvRUv6AyCKWMwkri7X-YAeBdr7XWC_RTcKWmZYGBGqU,1029
187
210
  alibabacloud_agentrun20250910/models/_mcpapi.py,sha256=WkbCEQJoz7JAmrxsO_OCjXQblkNoisPlvUF3Js96hkI,3040
@@ -191,6 +214,8 @@ alibabacloud_agentrun20250910/models/_mcpmatch.py,sha256=0kaIL2vM-BXWWrVoOcvYOGp
191
214
  alibabacloud_agentrun20250910/models/_mcppath_match.py,sha256=zHE8LVxWaiuyrpk6zleKfIkw5EGeKYyzhaW3xNsD2SU,916
192
215
  alibabacloud_agentrun20250910/models/_mcpserver_config.py,sha256=lznJLm4jOoP-6dWmFKPp7mWmvpaJ16dKSh43bRghP1c,1283
193
216
  alibabacloud_agentrun20250910/models/_mcpservice_config.py,sha256=-A90W6S9XaA5ylU7U2_KHAbOnX-uF4yd7MNZlWHxJUU,760
217
+ alibabacloud_agentrun20250910/models/_memory_collection.py,sha256=a8D7P5u8IFt7HNQnN3onsP-j_FoanPWOOFKao85ZKF8,4379
218
+ alibabacloud_agentrun20250910/models/_memory_collection_result.py,sha256=FkQGsC9MQgvPivzUpZ9z56ICxfqZr0APAZzDa1ER5Ng,1387
194
219
  alibabacloud_agentrun20250910/models/_model.py,sha256=kigW0vaSAVff6YsuOFDclZbjbad1n6t6DB-329XKaA4,3804
195
220
  alibabacloud_agentrun20250910/models/_model_features.py,sha256=yA10CHgp8Ldjo-SDR66hjIzCM1_HqCToK--q8Ayj6n8,1852
196
221
  alibabacloud_agentrun20250910/models/_model_info_config.py,sha256=CsLIcOqYFR9jr4ONE1C5uBYHJlHVZOiS-U-QCeN7UFA,2591
@@ -259,6 +284,12 @@ alibabacloud_agentrun20250910/models/_update_credential_request.py,sha256=R0vUVY
259
284
  alibabacloud_agentrun20250910/models/_update_credential_response.py,sha256=hvC4zF9g8Iabm3KRA1NHx92vovzclH-YbTpKGJYZdFE,1461
260
285
  alibabacloud_agentrun20250910/models/_update_custom_domain_input.py,sha256=9s-lc2oCE1ac7PbyffZiEY--RqrmlWTGWQj3owvTQB8,2680
261
286
  alibabacloud_agentrun20250910/models/_update_domain_input.py,sha256=TgDFH6dwozcqm1_CacVPmoFBjg3lx2t62GqAKfd1Ngs,1044
287
+ alibabacloud_agentrun20250910/models/_update_knowledge_base_input.py,sha256=DVUhIe3ruzDlwco2GN1VwP_q7roa1leItSJ29a23_lM,1762
288
+ alibabacloud_agentrun20250910/models/_update_knowledge_base_request.py,sha256=-hChEQCeVVdPjXtcagu_lf3h2LB1QZnRxbzRSivYLZw,952
289
+ alibabacloud_agentrun20250910/models/_update_knowledge_base_response.py,sha256=FGwCYz3wsE3TtV-oXKAoz9EumcARa2BeEhVDpah5MMA,1470
290
+ alibabacloud_agentrun20250910/models/_update_memory_collection_input.py,sha256=qANbRzKqKN2Xa_YxqNZvtbCEMS-zzpF0xND8IbQpeAk,3144
291
+ alibabacloud_agentrun20250910/models/_update_memory_collection_request.py,sha256=uiuGtgTfu3aVDFEhvTq4Dq__WM8XoSQ2oCLsVMSywqo,961
292
+ alibabacloud_agentrun20250910/models/_update_memory_collection_response.py,sha256=PRPldmAd9X3P_FUAr419DCrAxPBmcHokE-dNOVzZQAA,1479
262
293
  alibabacloud_agentrun20250910/models/_update_model_input.py,sha256=oHfEY3WTXojplIdrrIHuEMnnWq1SijdmkCGXneU5MF0,2057
263
294
  alibabacloud_agentrun20250910/models/_update_model_proxy_input.py,sha256=yfgL9WtvotC4eToKnnVOHDcU8Y8gIB7kByGiuBkhlvc,3480
264
295
  alibabacloud_agentrun20250910/models/_update_model_proxy_request.py,sha256=V9-TXkJkriTB5reLf1CD8w8qKfn3-bVR2q2QPDQygQo,943
@@ -273,10 +304,11 @@ alibabacloud_agentrun20250910/models/_update_template_response.py,sha256=q5w77jL
273
304
  alibabacloud_agentrun20250910/models/_update_tool_data.py,sha256=sxTitPzTXhtlb8Lo4o2x29-YHhRWnmCOvfm005UP0_E,1650
274
305
  alibabacloud_agentrun20250910/models/_update_tool_input.py,sha256=dqUmuI3Ca5u8I-7bYBv0K9uj5Fvp0KkEGMtrb-J7sZk,1193
275
306
  alibabacloud_agentrun20250910/models/_update_tool_output.py,sha256=8Qy6IF4Tv61KCH1K82YxUhqQT7HfWzwTPfPsvhdMKjk,1381
307
+ alibabacloud_agentrun20250910/models/_vector_store_config.py,sha256=rvEBQNPeVcXQmBfJHVo2vpQbTR4u9-xerWNUEa2HLMg,2685
276
308
  alibabacloud_agentrun20250910/models/_version_weight.py,sha256=b8Q6LkLBbwREUz5u4gksWiZJOR3KnwvQnmGKZmBRhfE,1035
277
309
  alibabacloud_agentrun20250910/models/_view_port_configuration.py,sha256=9OJd_njOHJISm9XTCXbpPTw78eKbcn0h8NPI_51KqgI,1115
278
- alibabacloud_agentrun20250910-5.0.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
279
- alibabacloud_agentrun20250910-5.0.0.dist-info/METADATA,sha256=il8drmIGaIHDjuT-0SEUswZdwv00Y3AUIXAb7qf_qDc,2324
280
- alibabacloud_agentrun20250910-5.0.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
281
- alibabacloud_agentrun20250910-5.0.0.dist-info/top_level.txt,sha256=52ubthzYJLT_H920wO8t0i9HV90alDqttDu0fv3l1aM,30
282
- alibabacloud_agentrun20250910-5.0.0.dist-info/RECORD,,
310
+ alibabacloud_agentrun20250910-5.2.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
311
+ alibabacloud_agentrun20250910-5.2.0.dist-info/METADATA,sha256=_rWT8vdcF6ggW5TFe82q4ziURuZxMeyiPQYbaFQz6bk,2324
312
+ alibabacloud_agentrun20250910-5.2.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
313
+ alibabacloud_agentrun20250910-5.2.0.dist-info/top_level.txt,sha256=52ubthzYJLT_H920wO8t0i9HV90alDqttDu0fv3l1aM,30
314
+ alibabacloud_agentrun20250910-5.2.0.dist-info/RECORD,,