alibabacloud-aimiaobi20230801 1.22.2__tar.gz → 1.22.4__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.2 → alibabacloud_aimiaobi20230801-1.22.4}/ChangeLog.md +8 -0
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/PKG-INFO +1 -1
- alibabacloud_aimiaobi20230801-1.22.4/alibabacloud_aimiaobi20230801/__init__.py +1 -0
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/alibabacloud_aimiaobi20230801/client.py +8 -0
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/alibabacloud_aimiaobi20230801/models.py +78 -0
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/alibabacloud_aimiaobi20230801.egg-info/PKG-INFO +1 -1
- alibabacloud_aimiaobi20230801-1.22.2/alibabacloud_aimiaobi20230801/__init__.py +0 -1
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/LICENSE +0 -0
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/MANIFEST.in +0 -0
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/README-CN.md +0 -0
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/README.md +0 -0
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/alibabacloud_aimiaobi20230801.egg-info/SOURCES.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/alibabacloud_aimiaobi20230801.egg-info/dependency_links.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/alibabacloud_aimiaobi20230801.egg-info/requires.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/alibabacloud_aimiaobi20230801.egg-info/top_level.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/setup.cfg +0 -0
- {alibabacloud_aimiaobi20230801-1.22.2 → alibabacloud_aimiaobi20230801-1.22.4}/setup.py +0 -0
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
2025-05-08 Version: 1.22.3
|
|
2
|
+
- Update API GetProperties: add response parameters Body.Data.IntelligentSearchConfig.CopilotPreciseSearchSources.
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
2025-05-08 Version: 1.22.2
|
|
6
|
+
- Update API ListSearchTaskDialogues: add response parameters Body.Data.$.ChatConfig.
|
|
7
|
+
|
|
8
|
+
|
|
1
9
|
2025-05-07 Version: 1.22.1
|
|
2
10
|
- Update API RunSearchGeneration: add request parameters AgentContext.BizContext.AskUser.
|
|
3
11
|
- Update API RunSearchGeneration: add request parameters AgentContext.BizContext.AskUserKeywords.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.22.4'
|
|
@@ -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
|
|
@@ -10862,6 +10868,45 @@ class GetPropertiesResponseBodyDataConsoleConfig(TeaModel):
|
|
|
10862
10868
|
return self
|
|
10863
10869
|
|
|
10864
10870
|
|
|
10871
|
+
class GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources(TeaModel):
|
|
10872
|
+
def __init__(
|
|
10873
|
+
self,
|
|
10874
|
+
code: str = None,
|
|
10875
|
+
dataset_name: str = None,
|
|
10876
|
+
name: str = None,
|
|
10877
|
+
):
|
|
10878
|
+
self.code = code
|
|
10879
|
+
self.dataset_name = dataset_name
|
|
10880
|
+
self.name = name
|
|
10881
|
+
|
|
10882
|
+
def validate(self):
|
|
10883
|
+
pass
|
|
10884
|
+
|
|
10885
|
+
def to_map(self):
|
|
10886
|
+
_map = super().to_map()
|
|
10887
|
+
if _map is not None:
|
|
10888
|
+
return _map
|
|
10889
|
+
|
|
10890
|
+
result = dict()
|
|
10891
|
+
if self.code is not None:
|
|
10892
|
+
result['Code'] = self.code
|
|
10893
|
+
if self.dataset_name is not None:
|
|
10894
|
+
result['DatasetName'] = self.dataset_name
|
|
10895
|
+
if self.name is not None:
|
|
10896
|
+
result['Name'] = self.name
|
|
10897
|
+
return result
|
|
10898
|
+
|
|
10899
|
+
def from_map(self, m: dict = None):
|
|
10900
|
+
m = m or dict()
|
|
10901
|
+
if m.get('Code') is not None:
|
|
10902
|
+
self.code = m.get('Code')
|
|
10903
|
+
if m.get('DatasetName') is not None:
|
|
10904
|
+
self.dataset_name = m.get('DatasetName')
|
|
10905
|
+
if m.get('Name') is not None:
|
|
10906
|
+
self.name = m.get('Name')
|
|
10907
|
+
return self
|
|
10908
|
+
|
|
10909
|
+
|
|
10865
10910
|
class GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamplesArticles(TeaModel):
|
|
10866
10911
|
def __init__(
|
|
10867
10912
|
self,
|
|
@@ -10996,15 +11041,21 @@ class GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSources(TeaModel
|
|
|
10996
11041
|
class GetPropertiesResponseBodyDataIntelligentSearchConfig(TeaModel):
|
|
10997
11042
|
def __init__(
|
|
10998
11043
|
self,
|
|
11044
|
+
copilot_precise_search_sources: List[GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources] = None,
|
|
10999
11045
|
product_description: str = None,
|
|
11000
11046
|
search_samples: List[GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamples] = None,
|
|
11001
11047
|
search_sources: List[GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSources] = None,
|
|
11002
11048
|
):
|
|
11049
|
+
self.copilot_precise_search_sources = copilot_precise_search_sources
|
|
11003
11050
|
self.product_description = product_description
|
|
11004
11051
|
self.search_samples = search_samples
|
|
11005
11052
|
self.search_sources = search_sources
|
|
11006
11053
|
|
|
11007
11054
|
def validate(self):
|
|
11055
|
+
if self.copilot_precise_search_sources:
|
|
11056
|
+
for k in self.copilot_precise_search_sources:
|
|
11057
|
+
if k:
|
|
11058
|
+
k.validate()
|
|
11008
11059
|
if self.search_samples:
|
|
11009
11060
|
for k in self.search_samples:
|
|
11010
11061
|
if k:
|
|
@@ -11020,6 +11071,10 @@ class GetPropertiesResponseBodyDataIntelligentSearchConfig(TeaModel):
|
|
|
11020
11071
|
return _map
|
|
11021
11072
|
|
|
11022
11073
|
result = dict()
|
|
11074
|
+
result['CopilotPreciseSearchSources'] = []
|
|
11075
|
+
if self.copilot_precise_search_sources is not None:
|
|
11076
|
+
for k in self.copilot_precise_search_sources:
|
|
11077
|
+
result['CopilotPreciseSearchSources'].append(k.to_map() if k else None)
|
|
11023
11078
|
if self.product_description is not None:
|
|
11024
11079
|
result['ProductDescription'] = self.product_description
|
|
11025
11080
|
result['SearchSamples'] = []
|
|
@@ -11034,6 +11089,11 @@ class GetPropertiesResponseBodyDataIntelligentSearchConfig(TeaModel):
|
|
|
11034
11089
|
|
|
11035
11090
|
def from_map(self, m: dict = None):
|
|
11036
11091
|
m = m or dict()
|
|
11092
|
+
self.copilot_precise_search_sources = []
|
|
11093
|
+
if m.get('CopilotPreciseSearchSources') is not None:
|
|
11094
|
+
for k in m.get('CopilotPreciseSearchSources'):
|
|
11095
|
+
temp_model = GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources()
|
|
11096
|
+
self.copilot_precise_search_sources.append(temp_model.from_map(k))
|
|
11037
11097
|
if m.get('ProductDescription') is not None:
|
|
11038
11098
|
self.product_description = m.get('ProductDescription')
|
|
11039
11099
|
self.search_samples = []
|
|
@@ -39622,12 +39682,14 @@ class SaveDataSourceOrderConfigRequestUserConfigDataSourceList(TeaModel):
|
|
|
39622
39682
|
def __init__(
|
|
39623
39683
|
self,
|
|
39624
39684
|
code: str = None,
|
|
39685
|
+
enable: bool = None,
|
|
39625
39686
|
name: str = None,
|
|
39626
39687
|
number: int = None,
|
|
39627
39688
|
type: str = None,
|
|
39628
39689
|
):
|
|
39629
39690
|
# This parameter is required.
|
|
39630
39691
|
self.code = code
|
|
39692
|
+
self.enable = enable
|
|
39631
39693
|
self.name = name
|
|
39632
39694
|
# This parameter is required.
|
|
39633
39695
|
self.number = number
|
|
@@ -39645,6 +39707,8 @@ class SaveDataSourceOrderConfigRequestUserConfigDataSourceList(TeaModel):
|
|
|
39645
39707
|
result = dict()
|
|
39646
39708
|
if self.code is not None:
|
|
39647
39709
|
result['Code'] = self.code
|
|
39710
|
+
if self.enable is not None:
|
|
39711
|
+
result['Enable'] = self.enable
|
|
39648
39712
|
if self.name is not None:
|
|
39649
39713
|
result['Name'] = self.name
|
|
39650
39714
|
if self.number is not None:
|
|
@@ -39657,6 +39721,8 @@ class SaveDataSourceOrderConfigRequestUserConfigDataSourceList(TeaModel):
|
|
|
39657
39721
|
m = m or dict()
|
|
39658
39722
|
if m.get('Code') is not None:
|
|
39659
39723
|
self.code = m.get('Code')
|
|
39724
|
+
if m.get('Enable') is not None:
|
|
39725
|
+
self.enable = m.get('Enable')
|
|
39660
39726
|
if m.get('Name') is not None:
|
|
39661
39727
|
self.name = m.get('Name')
|
|
39662
39728
|
if m.get('Number') is not None:
|
|
@@ -39670,11 +39736,13 @@ class SaveDataSourceOrderConfigRequest(TeaModel):
|
|
|
39670
39736
|
def __init__(
|
|
39671
39737
|
self,
|
|
39672
39738
|
agent_key: str = None,
|
|
39739
|
+
generate_technology: str = None,
|
|
39673
39740
|
product_code: str = None,
|
|
39674
39741
|
user_config_data_source_list: List[SaveDataSourceOrderConfigRequestUserConfigDataSourceList] = None,
|
|
39675
39742
|
):
|
|
39676
39743
|
# This parameter is required.
|
|
39677
39744
|
self.agent_key = agent_key
|
|
39745
|
+
self.generate_technology = generate_technology
|
|
39678
39746
|
# This parameter is required.
|
|
39679
39747
|
self.product_code = product_code
|
|
39680
39748
|
# This parameter is required.
|
|
@@ -39694,6 +39762,8 @@ class SaveDataSourceOrderConfigRequest(TeaModel):
|
|
|
39694
39762
|
result = dict()
|
|
39695
39763
|
if self.agent_key is not None:
|
|
39696
39764
|
result['AgentKey'] = self.agent_key
|
|
39765
|
+
if self.generate_technology is not None:
|
|
39766
|
+
result['GenerateTechnology'] = self.generate_technology
|
|
39697
39767
|
if self.product_code is not None:
|
|
39698
39768
|
result['ProductCode'] = self.product_code
|
|
39699
39769
|
result['UserConfigDataSourceList'] = []
|
|
@@ -39706,6 +39776,8 @@ class SaveDataSourceOrderConfigRequest(TeaModel):
|
|
|
39706
39776
|
m = m or dict()
|
|
39707
39777
|
if m.get('AgentKey') is not None:
|
|
39708
39778
|
self.agent_key = m.get('AgentKey')
|
|
39779
|
+
if m.get('GenerateTechnology') is not None:
|
|
39780
|
+
self.generate_technology = m.get('GenerateTechnology')
|
|
39709
39781
|
if m.get('ProductCode') is not None:
|
|
39710
39782
|
self.product_code = m.get('ProductCode')
|
|
39711
39783
|
self.user_config_data_source_list = []
|
|
@@ -39720,11 +39792,13 @@ class SaveDataSourceOrderConfigShrinkRequest(TeaModel):
|
|
|
39720
39792
|
def __init__(
|
|
39721
39793
|
self,
|
|
39722
39794
|
agent_key: str = None,
|
|
39795
|
+
generate_technology: str = None,
|
|
39723
39796
|
product_code: str = None,
|
|
39724
39797
|
user_config_data_source_list_shrink: str = None,
|
|
39725
39798
|
):
|
|
39726
39799
|
# This parameter is required.
|
|
39727
39800
|
self.agent_key = agent_key
|
|
39801
|
+
self.generate_technology = generate_technology
|
|
39728
39802
|
# This parameter is required.
|
|
39729
39803
|
self.product_code = product_code
|
|
39730
39804
|
# This parameter is required.
|
|
@@ -39741,6 +39815,8 @@ class SaveDataSourceOrderConfigShrinkRequest(TeaModel):
|
|
|
39741
39815
|
result = dict()
|
|
39742
39816
|
if self.agent_key is not None:
|
|
39743
39817
|
result['AgentKey'] = self.agent_key
|
|
39818
|
+
if self.generate_technology is not None:
|
|
39819
|
+
result['GenerateTechnology'] = self.generate_technology
|
|
39744
39820
|
if self.product_code is not None:
|
|
39745
39821
|
result['ProductCode'] = self.product_code
|
|
39746
39822
|
if self.user_config_data_source_list_shrink is not None:
|
|
@@ -39751,6 +39827,8 @@ class SaveDataSourceOrderConfigShrinkRequest(TeaModel):
|
|
|
39751
39827
|
m = m or dict()
|
|
39752
39828
|
if m.get('AgentKey') is not None:
|
|
39753
39829
|
self.agent_key = m.get('AgentKey')
|
|
39830
|
+
if m.get('GenerateTechnology') is not None:
|
|
39831
|
+
self.generate_technology = m.get('GenerateTechnology')
|
|
39754
39832
|
if m.get('ProductCode') is not None:
|
|
39755
39833
|
self.product_code = m.get('ProductCode')
|
|
39756
39834
|
if m.get('UserConfigDataSourceList') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.22.2'
|
|
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
|