alibabacloud-aimiaobi20230801 1.23.0__tar.gz → 1.23.1__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.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/ChangeLog.md +7 -0
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/PKG-INFO +1 -1
- alibabacloud_aimiaobi20230801-1.23.1/alibabacloud_aimiaobi20230801/__init__.py +1 -0
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/alibabacloud_aimiaobi20230801/models.py +78 -1
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/alibabacloud_aimiaobi20230801.egg-info/PKG-INFO +1 -1
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/setup.py +1 -1
- alibabacloud_aimiaobi20230801-1.23.0/alibabacloud_aimiaobi20230801/__init__.py +0 -1
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/LICENSE +0 -0
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/MANIFEST.in +0 -0
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/README-CN.md +0 -0
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/README.md +0 -0
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/alibabacloud_aimiaobi20230801/client.py +0 -0
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/alibabacloud_aimiaobi20230801.egg-info/SOURCES.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/alibabacloud_aimiaobi20230801.egg-info/dependency_links.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/alibabacloud_aimiaobi20230801.egg-info/requires.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/alibabacloud_aimiaobi20230801.egg-info/top_level.txt +0 -0
- {alibabacloud_aimiaobi20230801-1.23.0 → alibabacloud_aimiaobi20230801-1.23.1}/setup.cfg +0 -0
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
2025-05-12 Version: 1.23.0
|
|
2
|
+
- Support API GetStyleLearningResult.
|
|
3
|
+
- Support API ListWritingStyles.
|
|
4
|
+
- Support API RunWritingV2.
|
|
5
|
+
- Update API GetProperties: add response parameters Body.Data.SearchSourceList.
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
2025-05-12 Version: 1.22.7
|
|
2
9
|
- Update API ListGeneratedContents: add request parameters DataType.
|
|
3
10
|
- Update API ListGeneratedContents: add response parameters Body.Data.$.FileAttr.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.23.1'
|
|
@@ -27599,9 +27599,73 @@ class RunCustomHotTopicViewPointAnalysisResponseBodyHeader(TeaModel):
|
|
|
27599
27599
|
return self
|
|
27600
27600
|
|
|
27601
27601
|
|
|
27602
|
+
class RunCustomHotTopicViewPointAnalysisResponseBodyPayloadOutputArticles(TeaModel):
|
|
27603
|
+
def __init__(
|
|
27604
|
+
self,
|
|
27605
|
+
author: str = None,
|
|
27606
|
+
content: str = None,
|
|
27607
|
+
pub_time: str = None,
|
|
27608
|
+
source: str = None,
|
|
27609
|
+
summary: str = None,
|
|
27610
|
+
title: str = None,
|
|
27611
|
+
url: str = None,
|
|
27612
|
+
):
|
|
27613
|
+
self.author = author
|
|
27614
|
+
self.content = content
|
|
27615
|
+
self.pub_time = pub_time
|
|
27616
|
+
self.source = source
|
|
27617
|
+
self.summary = summary
|
|
27618
|
+
self.title = title
|
|
27619
|
+
self.url = url
|
|
27620
|
+
|
|
27621
|
+
def validate(self):
|
|
27622
|
+
pass
|
|
27623
|
+
|
|
27624
|
+
def to_map(self):
|
|
27625
|
+
_map = super().to_map()
|
|
27626
|
+
if _map is not None:
|
|
27627
|
+
return _map
|
|
27628
|
+
|
|
27629
|
+
result = dict()
|
|
27630
|
+
if self.author is not None:
|
|
27631
|
+
result['Author'] = self.author
|
|
27632
|
+
if self.content is not None:
|
|
27633
|
+
result['Content'] = self.content
|
|
27634
|
+
if self.pub_time is not None:
|
|
27635
|
+
result['PubTime'] = self.pub_time
|
|
27636
|
+
if self.source is not None:
|
|
27637
|
+
result['Source'] = self.source
|
|
27638
|
+
if self.summary is not None:
|
|
27639
|
+
result['Summary'] = self.summary
|
|
27640
|
+
if self.title is not None:
|
|
27641
|
+
result['Title'] = self.title
|
|
27642
|
+
if self.url is not None:
|
|
27643
|
+
result['Url'] = self.url
|
|
27644
|
+
return result
|
|
27645
|
+
|
|
27646
|
+
def from_map(self, m: dict = None):
|
|
27647
|
+
m = m or dict()
|
|
27648
|
+
if m.get('Author') is not None:
|
|
27649
|
+
self.author = m.get('Author')
|
|
27650
|
+
if m.get('Content') is not None:
|
|
27651
|
+
self.content = m.get('Content')
|
|
27652
|
+
if m.get('PubTime') is not None:
|
|
27653
|
+
self.pub_time = m.get('PubTime')
|
|
27654
|
+
if m.get('Source') is not None:
|
|
27655
|
+
self.source = m.get('Source')
|
|
27656
|
+
if m.get('Summary') is not None:
|
|
27657
|
+
self.summary = m.get('Summary')
|
|
27658
|
+
if m.get('Title') is not None:
|
|
27659
|
+
self.title = m.get('Title')
|
|
27660
|
+
if m.get('Url') is not None:
|
|
27661
|
+
self.url = m.get('Url')
|
|
27662
|
+
return self
|
|
27663
|
+
|
|
27664
|
+
|
|
27602
27665
|
class RunCustomHotTopicViewPointAnalysisResponseBodyPayloadOutput(TeaModel):
|
|
27603
27666
|
def __init__(
|
|
27604
27667
|
self,
|
|
27668
|
+
articles: List[RunCustomHotTopicViewPointAnalysisResponseBodyPayloadOutputArticles] = None,
|
|
27605
27669
|
ask_user: List[str] = None,
|
|
27606
27670
|
async_task_id: str = None,
|
|
27607
27671
|
attitude: str = None,
|
|
@@ -27609,6 +27673,7 @@ class RunCustomHotTopicViewPointAnalysisResponseBodyPayloadOutput(TeaModel):
|
|
|
27609
27673
|
text: str = None,
|
|
27610
27674
|
topic_id: str = None,
|
|
27611
27675
|
):
|
|
27676
|
+
self.articles = articles
|
|
27612
27677
|
self.ask_user = ask_user
|
|
27613
27678
|
self.async_task_id = async_task_id
|
|
27614
27679
|
self.attitude = attitude
|
|
@@ -27617,7 +27682,10 @@ class RunCustomHotTopicViewPointAnalysisResponseBodyPayloadOutput(TeaModel):
|
|
|
27617
27682
|
self.topic_id = topic_id
|
|
27618
27683
|
|
|
27619
27684
|
def validate(self):
|
|
27620
|
-
|
|
27685
|
+
if self.articles:
|
|
27686
|
+
for k in self.articles:
|
|
27687
|
+
if k:
|
|
27688
|
+
k.validate()
|
|
27621
27689
|
|
|
27622
27690
|
def to_map(self):
|
|
27623
27691
|
_map = super().to_map()
|
|
@@ -27625,6 +27693,10 @@ class RunCustomHotTopicViewPointAnalysisResponseBodyPayloadOutput(TeaModel):
|
|
|
27625
27693
|
return _map
|
|
27626
27694
|
|
|
27627
27695
|
result = dict()
|
|
27696
|
+
result['Articles'] = []
|
|
27697
|
+
if self.articles is not None:
|
|
27698
|
+
for k in self.articles:
|
|
27699
|
+
result['Articles'].append(k.to_map() if k else None)
|
|
27628
27700
|
if self.ask_user is not None:
|
|
27629
27701
|
result['AskUser'] = self.ask_user
|
|
27630
27702
|
if self.async_task_id is not None:
|
|
@@ -27641,6 +27713,11 @@ class RunCustomHotTopicViewPointAnalysisResponseBodyPayloadOutput(TeaModel):
|
|
|
27641
27713
|
|
|
27642
27714
|
def from_map(self, m: dict = None):
|
|
27643
27715
|
m = m or dict()
|
|
27716
|
+
self.articles = []
|
|
27717
|
+
if m.get('Articles') is not None:
|
|
27718
|
+
for k in m.get('Articles'):
|
|
27719
|
+
temp_model = RunCustomHotTopicViewPointAnalysisResponseBodyPayloadOutputArticles()
|
|
27720
|
+
self.articles.append(temp_model.from_map(k))
|
|
27644
27721
|
if m.get('AskUser') is not None:
|
|
27645
27722
|
self.ask_user = m.get('AskUser')
|
|
27646
27723
|
if m.get('AsyncTaskId') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.23.0'
|
|
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
|