alibabacloud-aimiaobi20230801 1.22.3__tar.gz → 1.22.5__tar.gz
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_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/ChangeLog.md +10 -0
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/PKG-INFO +1 -1
- alibabacloud_aimiaobi20230801-1.22.5/alibabacloud_aimiaobi20230801/__init__.py +1 -0
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/alibabacloud_aimiaobi20230801/client.py +8 -0
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/alibabacloud_aimiaobi20230801/models.py +24 -0
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/alibabacloud_aimiaobi20230801.egg-info/PKG-INFO +1 -1
- alibabacloud_aimiaobi20230801-1.22.3/alibabacloud_aimiaobi20230801/__init__.py +0 -1
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/LICENSE +0 -0
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/MANIFEST.in +0 -0
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/README-CN.md +0 -0
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/README.md +0 -0
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/alibabacloud_aimiaobi20230801.egg-info/SOURCES.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/alibabacloud_aimiaobi20230801.egg-info/dependency_links.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/alibabacloud_aimiaobi20230801.egg-info/requires.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/alibabacloud_aimiaobi20230801.egg-info/top_level.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/setup.cfg +0 -0
- {alibabacloud_aimiaobi20230801-1.22.3 → alibabacloud_aimiaobi20230801-1.22.5}/setup.py +0 -0
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
2025-05-08 Version: 1.22.4
|
|
2
|
+
- Update API GetDataSourceOrderConfig: add request parameters GenerateTechnology.
|
|
3
|
+
- Update API SaveDataSourceOrderConfig: add request parameters GenerateTechnology.
|
|
4
|
+
- Update API SaveDataSourceOrderConfig: add request parameters UserConfigDataSourceList.$.Enable.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
2025-05-08 Version: 1.22.3
|
|
8
|
+
- Update API GetProperties: add response parameters Body.Data.IntelligentSearchConfig.CopilotPreciseSearchSources.
|
|
9
|
+
|
|
10
|
+
|
|
1
11
|
2025-05-08 Version: 1.22.2
|
|
2
12
|
- Update API ListSearchTaskDialogues: add response parameters Body.Data.$.ChatConfig.
|
|
3
13
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.22.5'
|
|
@@ -3374,6 +3374,8 @@ class Client(OpenApiClient):
|
|
|
3374
3374
|
if not UtilClient.is_unset(request.agent_key):
|
|
3375
3375
|
query['AgentKey'] = request.agent_key
|
|
3376
3376
|
body = {}
|
|
3377
|
+
if not UtilClient.is_unset(request.generate_technology):
|
|
3378
|
+
body['GenerateTechnology'] = request.generate_technology
|
|
3377
3379
|
if not UtilClient.is_unset(request.product_code):
|
|
3378
3380
|
body['ProductCode'] = request.product_code
|
|
3379
3381
|
req = open_api_models.OpenApiRequest(
|
|
@@ -3413,6 +3415,8 @@ class Client(OpenApiClient):
|
|
|
3413
3415
|
if not UtilClient.is_unset(request.agent_key):
|
|
3414
3416
|
query['AgentKey'] = request.agent_key
|
|
3415
3417
|
body = {}
|
|
3418
|
+
if not UtilClient.is_unset(request.generate_technology):
|
|
3419
|
+
body['GenerateTechnology'] = request.generate_technology
|
|
3416
3420
|
if not UtilClient.is_unset(request.product_code):
|
|
3417
3421
|
body['ProductCode'] = request.product_code
|
|
3418
3422
|
req = open_api_models.OpenApiRequest(
|
|
@@ -12942,6 +12946,8 @@ class Client(OpenApiClient):
|
|
|
12942
12946
|
if not UtilClient.is_unset(request.agent_key):
|
|
12943
12947
|
query['AgentKey'] = request.agent_key
|
|
12944
12948
|
body = {}
|
|
12949
|
+
if not UtilClient.is_unset(request.generate_technology):
|
|
12950
|
+
body['GenerateTechnology'] = request.generate_technology
|
|
12945
12951
|
if not UtilClient.is_unset(request.product_code):
|
|
12946
12952
|
body['ProductCode'] = request.product_code
|
|
12947
12953
|
if not UtilClient.is_unset(request.user_config_data_source_list_shrink):
|
|
@@ -12987,6 +12993,8 @@ class Client(OpenApiClient):
|
|
|
12987
12993
|
if not UtilClient.is_unset(request.agent_key):
|
|
12988
12994
|
query['AgentKey'] = request.agent_key
|
|
12989
12995
|
body = {}
|
|
12996
|
+
if not UtilClient.is_unset(request.generate_technology):
|
|
12997
|
+
body['GenerateTechnology'] = request.generate_technology
|
|
12990
12998
|
if not UtilClient.is_unset(request.product_code):
|
|
12991
12999
|
body['ProductCode'] = request.product_code
|
|
12992
13000
|
if not UtilClient.is_unset(request.user_config_data_source_list_shrink):
|
|
@@ -6522,10 +6522,12 @@ class GetDataSourceOrderConfigRequest(TeaModel):
|
|
|
6522
6522
|
def __init__(
|
|
6523
6523
|
self,
|
|
6524
6524
|
agent_key: str = None,
|
|
6525
|
+
generate_technology: str = None,
|
|
6525
6526
|
product_code: str = None,
|
|
6526
6527
|
):
|
|
6527
6528
|
# This parameter is required.
|
|
6528
6529
|
self.agent_key = agent_key
|
|
6530
|
+
self.generate_technology = generate_technology
|
|
6529
6531
|
# This parameter is required.
|
|
6530
6532
|
self.product_code = product_code
|
|
6531
6533
|
|
|
@@ -6540,6 +6542,8 @@ class GetDataSourceOrderConfigRequest(TeaModel):
|
|
|
6540
6542
|
result = dict()
|
|
6541
6543
|
if self.agent_key is not None:
|
|
6542
6544
|
result['AgentKey'] = self.agent_key
|
|
6545
|
+
if self.generate_technology is not None:
|
|
6546
|
+
result['GenerateTechnology'] = self.generate_technology
|
|
6543
6547
|
if self.product_code is not None:
|
|
6544
6548
|
result['ProductCode'] = self.product_code
|
|
6545
6549
|
return result
|
|
@@ -6548,6 +6552,8 @@ class GetDataSourceOrderConfigRequest(TeaModel):
|
|
|
6548
6552
|
m = m or dict()
|
|
6549
6553
|
if m.get('AgentKey') is not None:
|
|
6550
6554
|
self.agent_key = m.get('AgentKey')
|
|
6555
|
+
if m.get('GenerateTechnology') is not None:
|
|
6556
|
+
self.generate_technology = m.get('GenerateTechnology')
|
|
6551
6557
|
if m.get('ProductCode') is not None:
|
|
6552
6558
|
self.product_code = m.get('ProductCode')
|
|
6553
6559
|
return self
|
|
@@ -39676,12 +39682,14 @@ class SaveDataSourceOrderConfigRequestUserConfigDataSourceList(TeaModel):
|
|
|
39676
39682
|
def __init__(
|
|
39677
39683
|
self,
|
|
39678
39684
|
code: str = None,
|
|
39685
|
+
enable: bool = None,
|
|
39679
39686
|
name: str = None,
|
|
39680
39687
|
number: int = None,
|
|
39681
39688
|
type: str = None,
|
|
39682
39689
|
):
|
|
39683
39690
|
# This parameter is required.
|
|
39684
39691
|
self.code = code
|
|
39692
|
+
self.enable = enable
|
|
39685
39693
|
self.name = name
|
|
39686
39694
|
# This parameter is required.
|
|
39687
39695
|
self.number = number
|
|
@@ -39699,6 +39707,8 @@ class SaveDataSourceOrderConfigRequestUserConfigDataSourceList(TeaModel):
|
|
|
39699
39707
|
result = dict()
|
|
39700
39708
|
if self.code is not None:
|
|
39701
39709
|
result['Code'] = self.code
|
|
39710
|
+
if self.enable is not None:
|
|
39711
|
+
result['Enable'] = self.enable
|
|
39702
39712
|
if self.name is not None:
|
|
39703
39713
|
result['Name'] = self.name
|
|
39704
39714
|
if self.number is not None:
|
|
@@ -39711,6 +39721,8 @@ class SaveDataSourceOrderConfigRequestUserConfigDataSourceList(TeaModel):
|
|
|
39711
39721
|
m = m or dict()
|
|
39712
39722
|
if m.get('Code') is not None:
|
|
39713
39723
|
self.code = m.get('Code')
|
|
39724
|
+
if m.get('Enable') is not None:
|
|
39725
|
+
self.enable = m.get('Enable')
|
|
39714
39726
|
if m.get('Name') is not None:
|
|
39715
39727
|
self.name = m.get('Name')
|
|
39716
39728
|
if m.get('Number') is not None:
|
|
@@ -39724,11 +39736,13 @@ class SaveDataSourceOrderConfigRequest(TeaModel):
|
|
|
39724
39736
|
def __init__(
|
|
39725
39737
|
self,
|
|
39726
39738
|
agent_key: str = None,
|
|
39739
|
+
generate_technology: str = None,
|
|
39727
39740
|
product_code: str = None,
|
|
39728
39741
|
user_config_data_source_list: List[SaveDataSourceOrderConfigRequestUserConfigDataSourceList] = None,
|
|
39729
39742
|
):
|
|
39730
39743
|
# This parameter is required.
|
|
39731
39744
|
self.agent_key = agent_key
|
|
39745
|
+
self.generate_technology = generate_technology
|
|
39732
39746
|
# This parameter is required.
|
|
39733
39747
|
self.product_code = product_code
|
|
39734
39748
|
# This parameter is required.
|
|
@@ -39748,6 +39762,8 @@ class SaveDataSourceOrderConfigRequest(TeaModel):
|
|
|
39748
39762
|
result = dict()
|
|
39749
39763
|
if self.agent_key is not None:
|
|
39750
39764
|
result['AgentKey'] = self.agent_key
|
|
39765
|
+
if self.generate_technology is not None:
|
|
39766
|
+
result['GenerateTechnology'] = self.generate_technology
|
|
39751
39767
|
if self.product_code is not None:
|
|
39752
39768
|
result['ProductCode'] = self.product_code
|
|
39753
39769
|
result['UserConfigDataSourceList'] = []
|
|
@@ -39760,6 +39776,8 @@ class SaveDataSourceOrderConfigRequest(TeaModel):
|
|
|
39760
39776
|
m = m or dict()
|
|
39761
39777
|
if m.get('AgentKey') is not None:
|
|
39762
39778
|
self.agent_key = m.get('AgentKey')
|
|
39779
|
+
if m.get('GenerateTechnology') is not None:
|
|
39780
|
+
self.generate_technology = m.get('GenerateTechnology')
|
|
39763
39781
|
if m.get('ProductCode') is not None:
|
|
39764
39782
|
self.product_code = m.get('ProductCode')
|
|
39765
39783
|
self.user_config_data_source_list = []
|
|
@@ -39774,11 +39792,13 @@ class SaveDataSourceOrderConfigShrinkRequest(TeaModel):
|
|
|
39774
39792
|
def __init__(
|
|
39775
39793
|
self,
|
|
39776
39794
|
agent_key: str = None,
|
|
39795
|
+
generate_technology: str = None,
|
|
39777
39796
|
product_code: str = None,
|
|
39778
39797
|
user_config_data_source_list_shrink: str = None,
|
|
39779
39798
|
):
|
|
39780
39799
|
# This parameter is required.
|
|
39781
39800
|
self.agent_key = agent_key
|
|
39801
|
+
self.generate_technology = generate_technology
|
|
39782
39802
|
# This parameter is required.
|
|
39783
39803
|
self.product_code = product_code
|
|
39784
39804
|
# This parameter is required.
|
|
@@ -39795,6 +39815,8 @@ class SaveDataSourceOrderConfigShrinkRequest(TeaModel):
|
|
|
39795
39815
|
result = dict()
|
|
39796
39816
|
if self.agent_key is not None:
|
|
39797
39817
|
result['AgentKey'] = self.agent_key
|
|
39818
|
+
if self.generate_technology is not None:
|
|
39819
|
+
result['GenerateTechnology'] = self.generate_technology
|
|
39798
39820
|
if self.product_code is not None:
|
|
39799
39821
|
result['ProductCode'] = self.product_code
|
|
39800
39822
|
if self.user_config_data_source_list_shrink is not None:
|
|
@@ -39805,6 +39827,8 @@ class SaveDataSourceOrderConfigShrinkRequest(TeaModel):
|
|
|
39805
39827
|
m = m or dict()
|
|
39806
39828
|
if m.get('AgentKey') is not None:
|
|
39807
39829
|
self.agent_key = m.get('AgentKey')
|
|
39830
|
+
if m.get('GenerateTechnology') is not None:
|
|
39831
|
+
self.generate_technology = m.get('GenerateTechnology')
|
|
39808
39832
|
if m.get('ProductCode') is not None:
|
|
39809
39833
|
self.product_code = m.get('ProductCode')
|
|
39810
39834
|
if m.get('UserConfigDataSourceList') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.22.3'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|