alibabacloud-aimiaobi20230801 1.26.1__py3-none-any.whl → 1.26.3__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.
@@ -1 +1 @@
1
- __version__ = '1.26.1'
1
+ __version__ = '1.26.3'
@@ -11495,6 +11495,8 @@ class Client(OpenApiClient):
11495
11495
  body['CleanCache'] = request.clean_cache
11496
11496
  if not UtilClient.is_unset(request.doc_id):
11497
11497
  body['DocId'] = request.doc_id
11498
+ if not UtilClient.is_unset(request.model_name):
11499
+ body['ModelName'] = request.model_name
11498
11500
  if not UtilClient.is_unset(request.query):
11499
11501
  body['Query'] = request.query
11500
11502
  if not UtilClient.is_unset(request.recommend_content):
@@ -11540,6 +11542,8 @@ class Client(OpenApiClient):
11540
11542
  body['CleanCache'] = request.clean_cache
11541
11543
  if not UtilClient.is_unset(request.doc_id):
11542
11544
  body['DocId'] = request.doc_id
11545
+ if not UtilClient.is_unset(request.model_name):
11546
+ body['ModelName'] = request.model_name
11543
11547
  if not UtilClient.is_unset(request.query):
11544
11548
  body['Query'] = request.query
11545
11549
  if not UtilClient.is_unset(request.recommend_content):
@@ -9312,6 +9312,7 @@ class GetGeneratedContentResponseBodyData(TeaModel):
9312
9312
  create_user: str = None,
9313
9313
  device_id: str = None,
9314
9314
  id: int = None,
9315
+ ignore_content_audit_words: str = None,
9315
9316
  keyword_list: List[str] = None,
9316
9317
  keywords: str = None,
9317
9318
  prompt: str = None,
@@ -9328,6 +9329,7 @@ class GetGeneratedContentResponseBodyData(TeaModel):
9328
9329
  self.create_user = create_user
9329
9330
  self.device_id = device_id
9330
9331
  self.id = id
9332
+ self.ignore_content_audit_words = ignore_content_audit_words
9331
9333
  self.keyword_list = keyword_list
9332
9334
  self.keywords = keywords
9333
9335
  self.prompt = prompt
@@ -9360,6 +9362,8 @@ class GetGeneratedContentResponseBodyData(TeaModel):
9360
9362
  result['DeviceId'] = self.device_id
9361
9363
  if self.id is not None:
9362
9364
  result['Id'] = self.id
9365
+ if self.ignore_content_audit_words is not None:
9366
+ result['IgnoreContentAuditWords'] = self.ignore_content_audit_words
9363
9367
  if self.keyword_list is not None:
9364
9368
  result['KeywordList'] = self.keyword_list
9365
9369
  if self.keywords is not None:
@@ -9394,6 +9398,8 @@ class GetGeneratedContentResponseBodyData(TeaModel):
9394
9398
  self.device_id = m.get('DeviceId')
9395
9399
  if m.get('Id') is not None:
9396
9400
  self.id = m.get('Id')
9401
+ if m.get('IgnoreContentAuditWords') is not None:
9402
+ self.ignore_content_audit_words = m.get('IgnoreContentAuditWords')
9397
9403
  if m.get('KeywordList') is not None:
9398
9404
  self.keyword_list = m.get('KeywordList')
9399
9405
  if m.get('Keywords') is not None:
@@ -30895,6 +30901,7 @@ class RunDocSummaryRequest(TeaModel):
30895
30901
  self,
30896
30902
  clean_cache: bool = None,
30897
30903
  doc_id: str = None,
30904
+ model_name: str = None,
30898
30905
  query: str = None,
30899
30906
  recommend_content: str = None,
30900
30907
  session_id: str = None,
@@ -30902,6 +30909,7 @@ class RunDocSummaryRequest(TeaModel):
30902
30909
  ):
30903
30910
  self.clean_cache = clean_cache
30904
30911
  self.doc_id = doc_id
30912
+ self.model_name = model_name
30905
30913
  self.query = query
30906
30914
  self.recommend_content = recommend_content
30907
30915
  # This parameter is required.
@@ -30922,6 +30930,8 @@ class RunDocSummaryRequest(TeaModel):
30922
30930
  result['CleanCache'] = self.clean_cache
30923
30931
  if self.doc_id is not None:
30924
30932
  result['DocId'] = self.doc_id
30933
+ if self.model_name is not None:
30934
+ result['ModelName'] = self.model_name
30925
30935
  if self.query is not None:
30926
30936
  result['Query'] = self.query
30927
30937
  if self.recommend_content is not None:
@@ -30938,6 +30948,8 @@ class RunDocSummaryRequest(TeaModel):
30938
30948
  self.clean_cache = m.get('CleanCache')
30939
30949
  if m.get('DocId') is not None:
30940
30950
  self.doc_id = m.get('DocId')
30951
+ if m.get('ModelName') is not None:
30952
+ self.model_name = m.get('ModelName')
30941
30953
  if m.get('Query') is not None:
30942
30954
  self.query = m.get('Query')
30943
30955
  if m.get('RecommendContent') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-aimiaobi20230801
3
- Version: 1.26.1
3
+ Version: 1.26.3
4
4
  Summary: Alibaba Cloud AiMiaoBi (20230801) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -0,0 +1,8 @@
1
+ alibabacloud_aimiaobi20230801/__init__.py,sha256=9-fC5gLBZWPfVP5thGWkUbCbIiGKJqFJF_r4vAsFi58,22
2
+ alibabacloud_aimiaobi20230801/client.py,sha256=aCt92D2iP8zLZ_txYILzHrA1-JbV7530nt4qHUvmhIY,674776
3
+ alibabacloud_aimiaobi20230801/models.py,sha256=iUIvBxw7R7gzxibsrG0BwL2yLxfo4waXOqZETmcx38M,1652943
4
+ alibabacloud_aimiaobi20230801-1.26.3.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
+ alibabacloud_aimiaobi20230801-1.26.3.dist-info/METADATA,sha256=EU737GwFJcQz_U_4JnhQkfnIpADC4o9i82hlCN_Gy-w,2348
6
+ alibabacloud_aimiaobi20230801-1.26.3.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
7
+ alibabacloud_aimiaobi20230801-1.26.3.dist-info/top_level.txt,sha256=8_10N8zQLrK-NI6L5TUyufvojDqjPl1Q-dHKwoC_b5Q,30
8
+ alibabacloud_aimiaobi20230801-1.26.3.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- alibabacloud_aimiaobi20230801/__init__.py,sha256=SZSAc-1VxFihMs7Wgxug_EbK1WMGENUtTOuyEWHNfUY,22
2
- alibabacloud_aimiaobi20230801/client.py,sha256=1LW4RBlcpJkHavPTXlS_8AO5IHBZfpY0LdQzECpbVlo,674562
3
- alibabacloud_aimiaobi20230801/models.py,sha256=xZag2rNhzBEe4xHn-vHNSuthZQtlgsrBAoGC0qUN1k4,1652303
4
- alibabacloud_aimiaobi20230801-1.26.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
- alibabacloud_aimiaobi20230801-1.26.1.dist-info/METADATA,sha256=yXF7VjuleU2wvLIm8Rwq_nQNU5kVA5Z4fE5yEdm71KE,2348
6
- alibabacloud_aimiaobi20230801-1.26.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
7
- alibabacloud_aimiaobi20230801-1.26.1.dist-info/top_level.txt,sha256=8_10N8zQLrK-NI6L5TUyufvojDqjPl1Q-dHKwoC_b5Q,30
8
- alibabacloud_aimiaobi20230801-1.26.1.dist-info/RECORD,,