alibabacloud-aimiaobi20230801 1.22.1__tar.gz → 1.22.3__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.1 → alibabacloud_aimiaobi20230801-1.22.3}/ChangeLog.md +17 -0
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/PKG-INFO +1 -1
- alibabacloud_aimiaobi20230801-1.22.3/alibabacloud_aimiaobi20230801/__init__.py +1 -0
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/alibabacloud_aimiaobi20230801/models.py +214 -1
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/alibabacloud_aimiaobi20230801.egg-info/PKG-INFO +1 -1
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/setup.py +1 -1
- alibabacloud_aimiaobi20230801-1.22.1/alibabacloud_aimiaobi20230801/__init__.py +0 -1
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/LICENSE +0 -0
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/MANIFEST.in +0 -0
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/README-CN.md +0 -0
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/README.md +0 -0
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/alibabacloud_aimiaobi20230801/client.py +0 -0
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/alibabacloud_aimiaobi20230801.egg-info/SOURCES.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/alibabacloud_aimiaobi20230801.egg-info/dependency_links.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/alibabacloud_aimiaobi20230801.egg-info/requires.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/alibabacloud_aimiaobi20230801.egg-info/top_level.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.22.1 → alibabacloud_aimiaobi20230801-1.22.3}/setup.cfg +0 -0
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
2025-05-08 Version: 1.22.2
|
|
2
|
+
- Update API ListSearchTaskDialogues: add response parameters Body.Data.$.ChatConfig.
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
2025-05-07 Version: 1.22.1
|
|
6
|
+
- Update API RunSearchGeneration: add request parameters AgentContext.BizContext.AskUser.
|
|
7
|
+
- Update API RunSearchGeneration: add request parameters AgentContext.BizContext.AskUserKeywords.
|
|
8
|
+
- Update API RunSearchGeneration: add request parameters AgentContext.BizContext.CurrentStep.
|
|
9
|
+
- Update API RunSearchGeneration: add request parameters AgentContext.BizContext.NextStep.
|
|
10
|
+
- Update API RunSearchGeneration: add request parameters AgentContext.BizContext.SupplementDataType.
|
|
11
|
+
- Update API RunSearchGeneration: add request parameters AgentContext.BizContext.SupplementEnable.
|
|
12
|
+
- Update API RunSearchGeneration: add request parameters AgentContext.BizContext.UserBack.
|
|
13
|
+
- Update API RunSearchGeneration: add request parameters AgentContext.BizContext.UserBackKeywords.
|
|
14
|
+
- Update API RunSearchGeneration: add response parameters Body.Payload.Output.AgentContext.BizContext.AskUser.
|
|
15
|
+
- Update API RunSearchGeneration: add response parameters Body.Payload.Output.AgentContext.BizContext.AskUserKeywords.
|
|
16
|
+
|
|
17
|
+
|
|
1
18
|
2025-05-07 Version: 1.22.0
|
|
2
19
|
- Support API SaveStyleLearningResult.
|
|
3
20
|
- Update API CreateDataset: add request parameters InvokeType.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.22.3'
|
|
@@ -10862,6 +10862,45 @@ class GetPropertiesResponseBodyDataConsoleConfig(TeaModel):
|
|
|
10862
10862
|
return self
|
|
10863
10863
|
|
|
10864
10864
|
|
|
10865
|
+
class GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources(TeaModel):
|
|
10866
|
+
def __init__(
|
|
10867
|
+
self,
|
|
10868
|
+
code: str = None,
|
|
10869
|
+
dataset_name: str = None,
|
|
10870
|
+
name: str = None,
|
|
10871
|
+
):
|
|
10872
|
+
self.code = code
|
|
10873
|
+
self.dataset_name = dataset_name
|
|
10874
|
+
self.name = name
|
|
10875
|
+
|
|
10876
|
+
def validate(self):
|
|
10877
|
+
pass
|
|
10878
|
+
|
|
10879
|
+
def to_map(self):
|
|
10880
|
+
_map = super().to_map()
|
|
10881
|
+
if _map is not None:
|
|
10882
|
+
return _map
|
|
10883
|
+
|
|
10884
|
+
result = dict()
|
|
10885
|
+
if self.code is not None:
|
|
10886
|
+
result['Code'] = self.code
|
|
10887
|
+
if self.dataset_name is not None:
|
|
10888
|
+
result['DatasetName'] = self.dataset_name
|
|
10889
|
+
if self.name is not None:
|
|
10890
|
+
result['Name'] = self.name
|
|
10891
|
+
return result
|
|
10892
|
+
|
|
10893
|
+
def from_map(self, m: dict = None):
|
|
10894
|
+
m = m or dict()
|
|
10895
|
+
if m.get('Code') is not None:
|
|
10896
|
+
self.code = m.get('Code')
|
|
10897
|
+
if m.get('DatasetName') is not None:
|
|
10898
|
+
self.dataset_name = m.get('DatasetName')
|
|
10899
|
+
if m.get('Name') is not None:
|
|
10900
|
+
self.name = m.get('Name')
|
|
10901
|
+
return self
|
|
10902
|
+
|
|
10903
|
+
|
|
10865
10904
|
class GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamplesArticles(TeaModel):
|
|
10866
10905
|
def __init__(
|
|
10867
10906
|
self,
|
|
@@ -10996,15 +11035,21 @@ class GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSources(TeaModel
|
|
|
10996
11035
|
class GetPropertiesResponseBodyDataIntelligentSearchConfig(TeaModel):
|
|
10997
11036
|
def __init__(
|
|
10998
11037
|
self,
|
|
11038
|
+
copilot_precise_search_sources: List[GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources] = None,
|
|
10999
11039
|
product_description: str = None,
|
|
11000
11040
|
search_samples: List[GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamples] = None,
|
|
11001
11041
|
search_sources: List[GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSources] = None,
|
|
11002
11042
|
):
|
|
11043
|
+
self.copilot_precise_search_sources = copilot_precise_search_sources
|
|
11003
11044
|
self.product_description = product_description
|
|
11004
11045
|
self.search_samples = search_samples
|
|
11005
11046
|
self.search_sources = search_sources
|
|
11006
11047
|
|
|
11007
11048
|
def validate(self):
|
|
11049
|
+
if self.copilot_precise_search_sources:
|
|
11050
|
+
for k in self.copilot_precise_search_sources:
|
|
11051
|
+
if k:
|
|
11052
|
+
k.validate()
|
|
11008
11053
|
if self.search_samples:
|
|
11009
11054
|
for k in self.search_samples:
|
|
11010
11055
|
if k:
|
|
@@ -11020,6 +11065,10 @@ class GetPropertiesResponseBodyDataIntelligentSearchConfig(TeaModel):
|
|
|
11020
11065
|
return _map
|
|
11021
11066
|
|
|
11022
11067
|
result = dict()
|
|
11068
|
+
result['CopilotPreciseSearchSources'] = []
|
|
11069
|
+
if self.copilot_precise_search_sources is not None:
|
|
11070
|
+
for k in self.copilot_precise_search_sources:
|
|
11071
|
+
result['CopilotPreciseSearchSources'].append(k.to_map() if k else None)
|
|
11023
11072
|
if self.product_description is not None:
|
|
11024
11073
|
result['ProductDescription'] = self.product_description
|
|
11025
11074
|
result['SearchSamples'] = []
|
|
@@ -11034,6 +11083,11 @@ class GetPropertiesResponseBodyDataIntelligentSearchConfig(TeaModel):
|
|
|
11034
11083
|
|
|
11035
11084
|
def from_map(self, m: dict = None):
|
|
11036
11085
|
m = m or dict()
|
|
11086
|
+
self.copilot_precise_search_sources = []
|
|
11087
|
+
if m.get('CopilotPreciseSearchSources') is not None:
|
|
11088
|
+
for k in m.get('CopilotPreciseSearchSources'):
|
|
11089
|
+
temp_model = GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources()
|
|
11090
|
+
self.copilot_precise_search_sources.append(temp_model.from_map(k))
|
|
11037
11091
|
if m.get('ProductDescription') is not None:
|
|
11038
11092
|
self.product_description = m.get('ProductDescription')
|
|
11039
11093
|
self.search_samples = []
|
|
@@ -21655,9 +21709,161 @@ class ListSearchTaskDialoguesRequest(TeaModel):
|
|
|
21655
21709
|
return self
|
|
21656
21710
|
|
|
21657
21711
|
|
|
21712
|
+
class ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources(TeaModel):
|
|
21713
|
+
def __init__(
|
|
21714
|
+
self,
|
|
21715
|
+
code: str = None,
|
|
21716
|
+
dataset_name: str = None,
|
|
21717
|
+
name: str = None,
|
|
21718
|
+
):
|
|
21719
|
+
self.code = code
|
|
21720
|
+
self.dataset_name = dataset_name
|
|
21721
|
+
self.name = name
|
|
21722
|
+
|
|
21723
|
+
def validate(self):
|
|
21724
|
+
pass
|
|
21725
|
+
|
|
21726
|
+
def to_map(self):
|
|
21727
|
+
_map = super().to_map()
|
|
21728
|
+
if _map is not None:
|
|
21729
|
+
return _map
|
|
21730
|
+
|
|
21731
|
+
result = dict()
|
|
21732
|
+
if self.code is not None:
|
|
21733
|
+
result['Code'] = self.code
|
|
21734
|
+
if self.dataset_name is not None:
|
|
21735
|
+
result['DatasetName'] = self.dataset_name
|
|
21736
|
+
if self.name is not None:
|
|
21737
|
+
result['Name'] = self.name
|
|
21738
|
+
return result
|
|
21739
|
+
|
|
21740
|
+
def from_map(self, m: dict = None):
|
|
21741
|
+
m = m or dict()
|
|
21742
|
+
if m.get('Code') is not None:
|
|
21743
|
+
self.code = m.get('Code')
|
|
21744
|
+
if m.get('DatasetName') is not None:
|
|
21745
|
+
self.dataset_name = m.get('DatasetName')
|
|
21746
|
+
if m.get('Name') is not None:
|
|
21747
|
+
self.name = m.get('Name')
|
|
21748
|
+
return self
|
|
21749
|
+
|
|
21750
|
+
|
|
21751
|
+
class ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam(TeaModel):
|
|
21752
|
+
def __init__(
|
|
21753
|
+
self,
|
|
21754
|
+
end_time: str = None,
|
|
21755
|
+
multimodal_search_types: List[str] = None,
|
|
21756
|
+
search_sources: List[ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources] = None,
|
|
21757
|
+
start_time: str = None,
|
|
21758
|
+
):
|
|
21759
|
+
self.end_time = end_time
|
|
21760
|
+
self.multimodal_search_types = multimodal_search_types
|
|
21761
|
+
self.search_sources = search_sources
|
|
21762
|
+
self.start_time = start_time
|
|
21763
|
+
|
|
21764
|
+
def validate(self):
|
|
21765
|
+
if self.search_sources:
|
|
21766
|
+
for k in self.search_sources:
|
|
21767
|
+
if k:
|
|
21768
|
+
k.validate()
|
|
21769
|
+
|
|
21770
|
+
def to_map(self):
|
|
21771
|
+
_map = super().to_map()
|
|
21772
|
+
if _map is not None:
|
|
21773
|
+
return _map
|
|
21774
|
+
|
|
21775
|
+
result = dict()
|
|
21776
|
+
if self.end_time is not None:
|
|
21777
|
+
result['EndTime'] = self.end_time
|
|
21778
|
+
if self.multimodal_search_types is not None:
|
|
21779
|
+
result['MultimodalSearchTypes'] = self.multimodal_search_types
|
|
21780
|
+
result['SearchSources'] = []
|
|
21781
|
+
if self.search_sources is not None:
|
|
21782
|
+
for k in self.search_sources:
|
|
21783
|
+
result['SearchSources'].append(k.to_map() if k else None)
|
|
21784
|
+
if self.start_time is not None:
|
|
21785
|
+
result['StartTime'] = self.start_time
|
|
21786
|
+
return result
|
|
21787
|
+
|
|
21788
|
+
def from_map(self, m: dict = None):
|
|
21789
|
+
m = m or dict()
|
|
21790
|
+
if m.get('EndTime') is not None:
|
|
21791
|
+
self.end_time = m.get('EndTime')
|
|
21792
|
+
if m.get('MultimodalSearchTypes') is not None:
|
|
21793
|
+
self.multimodal_search_types = m.get('MultimodalSearchTypes')
|
|
21794
|
+
self.search_sources = []
|
|
21795
|
+
if m.get('SearchSources') is not None:
|
|
21796
|
+
for k in m.get('SearchSources'):
|
|
21797
|
+
temp_model = ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources()
|
|
21798
|
+
self.search_sources.append(temp_model.from_map(k))
|
|
21799
|
+
if m.get('StartTime') is not None:
|
|
21800
|
+
self.start_time = m.get('StartTime')
|
|
21801
|
+
return self
|
|
21802
|
+
|
|
21803
|
+
|
|
21804
|
+
class ListSearchTaskDialoguesResponseBodyDataChatConfig(TeaModel):
|
|
21805
|
+
def __init__(
|
|
21806
|
+
self,
|
|
21807
|
+
dialogue_type: int = None,
|
|
21808
|
+
end_to_end: bool = None,
|
|
21809
|
+
generate_level: str = None,
|
|
21810
|
+
generate_technology: str = None,
|
|
21811
|
+
search_models: List[str] = None,
|
|
21812
|
+
search_param: ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam = None,
|
|
21813
|
+
):
|
|
21814
|
+
self.dialogue_type = dialogue_type
|
|
21815
|
+
self.end_to_end = end_to_end
|
|
21816
|
+
self.generate_level = generate_level
|
|
21817
|
+
self.generate_technology = generate_technology
|
|
21818
|
+
self.search_models = search_models
|
|
21819
|
+
self.search_param = search_param
|
|
21820
|
+
|
|
21821
|
+
def validate(self):
|
|
21822
|
+
if self.search_param:
|
|
21823
|
+
self.search_param.validate()
|
|
21824
|
+
|
|
21825
|
+
def to_map(self):
|
|
21826
|
+
_map = super().to_map()
|
|
21827
|
+
if _map is not None:
|
|
21828
|
+
return _map
|
|
21829
|
+
|
|
21830
|
+
result = dict()
|
|
21831
|
+
if self.dialogue_type is not None:
|
|
21832
|
+
result['DialogueType'] = self.dialogue_type
|
|
21833
|
+
if self.end_to_end is not None:
|
|
21834
|
+
result['EndToEnd'] = self.end_to_end
|
|
21835
|
+
if self.generate_level is not None:
|
|
21836
|
+
result['GenerateLevel'] = self.generate_level
|
|
21837
|
+
if self.generate_technology is not None:
|
|
21838
|
+
result['GenerateTechnology'] = self.generate_technology
|
|
21839
|
+
if self.search_models is not None:
|
|
21840
|
+
result['SearchModels'] = self.search_models
|
|
21841
|
+
if self.search_param is not None:
|
|
21842
|
+
result['SearchParam'] = self.search_param.to_map()
|
|
21843
|
+
return result
|
|
21844
|
+
|
|
21845
|
+
def from_map(self, m: dict = None):
|
|
21846
|
+
m = m or dict()
|
|
21847
|
+
if m.get('DialogueType') is not None:
|
|
21848
|
+
self.dialogue_type = m.get('DialogueType')
|
|
21849
|
+
if m.get('EndToEnd') is not None:
|
|
21850
|
+
self.end_to_end = m.get('EndToEnd')
|
|
21851
|
+
if m.get('GenerateLevel') is not None:
|
|
21852
|
+
self.generate_level = m.get('GenerateLevel')
|
|
21853
|
+
if m.get('GenerateTechnology') is not None:
|
|
21854
|
+
self.generate_technology = m.get('GenerateTechnology')
|
|
21855
|
+
if m.get('SearchModels') is not None:
|
|
21856
|
+
self.search_models = m.get('SearchModels')
|
|
21857
|
+
if m.get('SearchParam') is not None:
|
|
21858
|
+
temp_model = ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam()
|
|
21859
|
+
self.search_param = temp_model.from_map(m['SearchParam'])
|
|
21860
|
+
return self
|
|
21861
|
+
|
|
21862
|
+
|
|
21658
21863
|
class ListSearchTaskDialoguesResponseBodyData(TeaModel):
|
|
21659
21864
|
def __init__(
|
|
21660
21865
|
self,
|
|
21866
|
+
chat_config: ListSearchTaskDialoguesResponseBodyDataChatConfig = None,
|
|
21661
21867
|
create_time: str = None,
|
|
21662
21868
|
dialogue_type: int = None,
|
|
21663
21869
|
good_text: str = None,
|
|
@@ -21670,6 +21876,7 @@ class ListSearchTaskDialoguesResponseBodyData(TeaModel):
|
|
|
21670
21876
|
task_id: str = None,
|
|
21671
21877
|
text: str = None,
|
|
21672
21878
|
):
|
|
21879
|
+
self.chat_config = chat_config
|
|
21673
21880
|
self.create_time = create_time
|
|
21674
21881
|
self.dialogue_type = dialogue_type
|
|
21675
21882
|
self.good_text = good_text
|
|
@@ -21683,7 +21890,8 @@ class ListSearchTaskDialoguesResponseBodyData(TeaModel):
|
|
|
21683
21890
|
self.text = text
|
|
21684
21891
|
|
|
21685
21892
|
def validate(self):
|
|
21686
|
-
|
|
21893
|
+
if self.chat_config:
|
|
21894
|
+
self.chat_config.validate()
|
|
21687
21895
|
|
|
21688
21896
|
def to_map(self):
|
|
21689
21897
|
_map = super().to_map()
|
|
@@ -21691,6 +21899,8 @@ class ListSearchTaskDialoguesResponseBodyData(TeaModel):
|
|
|
21691
21899
|
return _map
|
|
21692
21900
|
|
|
21693
21901
|
result = dict()
|
|
21902
|
+
if self.chat_config is not None:
|
|
21903
|
+
result['ChatConfig'] = self.chat_config.to_map()
|
|
21694
21904
|
if self.create_time is not None:
|
|
21695
21905
|
result['CreateTime'] = self.create_time
|
|
21696
21906
|
if self.dialogue_type is not None:
|
|
@@ -21717,6 +21927,9 @@ class ListSearchTaskDialoguesResponseBodyData(TeaModel):
|
|
|
21717
21927
|
|
|
21718
21928
|
def from_map(self, m: dict = None):
|
|
21719
21929
|
m = m or dict()
|
|
21930
|
+
if m.get('ChatConfig') is not None:
|
|
21931
|
+
temp_model = ListSearchTaskDialoguesResponseBodyDataChatConfig()
|
|
21932
|
+
self.chat_config = temp_model.from_map(m['ChatConfig'])
|
|
21720
21933
|
if m.get('CreateTime') is not None:
|
|
21721
21934
|
self.create_time = m.get('CreateTime')
|
|
21722
21935
|
if m.get('DialogueType') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.22.1'
|
|
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
|