alibabacloud-quanmiaolightapp20240801 1.4.0__tar.gz → 1.4.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_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/ChangeLog.md +5 -0
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/PKG-INFO +1 -1
- alibabacloud_quanmiaolightapp20240801-1.4.1/alibabacloud_quanmiaolightapp20240801/__init__.py +1 -0
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/alibabacloud_quanmiaolightapp20240801/client.py +12 -0
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/alibabacloud_quanmiaolightapp20240801/models.py +18 -0
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/alibabacloud_quanmiaolightapp20240801.egg-info/PKG-INFO +1 -1
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/alibabacloud_quanmiaolightapp20240801.egg-info/requires.txt +1 -1
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/setup.py +2 -2
- alibabacloud_quanmiaolightapp20240801-1.4.0/alibabacloud_quanmiaolightapp20240801/__init__.py +0 -1
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/LICENSE +0 -0
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/MANIFEST.in +0 -0
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/README-CN.md +0 -0
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/README.md +0 -0
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/alibabacloud_quanmiaolightapp20240801.egg-info/SOURCES.txt +0 -0
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/alibabacloud_quanmiaolightapp20240801.egg-info/dependency_links.txt +0 -0
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/alibabacloud_quanmiaolightapp20240801.egg-info/top_level.txt +0 -0
- {alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/setup.cfg +0 -0
{alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud_quanmiaolightapp20240801
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.1
|
|
4
4
|
Summary: Alibaba Cloud QuanMiaoLightApp (20240801) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.4.1'
|
|
@@ -830,10 +830,16 @@ class Client(OpenApiClient):
|
|
|
830
830
|
"""
|
|
831
831
|
UtilClient.validate_model(request)
|
|
832
832
|
body = {}
|
|
833
|
+
if not UtilClient.is_unset(request.custom_limitation):
|
|
834
|
+
body['customLimitation'] = request.custom_limitation
|
|
833
835
|
if not UtilClient.is_unset(request.custom_prompt):
|
|
834
836
|
body['customPrompt'] = request.custom_prompt
|
|
837
|
+
if not UtilClient.is_unset(request.input_example):
|
|
838
|
+
body['inputExample'] = request.input_example
|
|
835
839
|
if not UtilClient.is_unset(request.model_id):
|
|
836
840
|
body['modelId'] = request.model_id
|
|
841
|
+
if not UtilClient.is_unset(request.output_example):
|
|
842
|
+
body['outputExample'] = request.output_example
|
|
837
843
|
if not UtilClient.is_unset(request.source_material):
|
|
838
844
|
body['sourceMaterial'] = request.source_material
|
|
839
845
|
if not UtilClient.is_unset(request.writing_type):
|
|
@@ -875,10 +881,16 @@ class Client(OpenApiClient):
|
|
|
875
881
|
"""
|
|
876
882
|
UtilClient.validate_model(request)
|
|
877
883
|
body = {}
|
|
884
|
+
if not UtilClient.is_unset(request.custom_limitation):
|
|
885
|
+
body['customLimitation'] = request.custom_limitation
|
|
878
886
|
if not UtilClient.is_unset(request.custom_prompt):
|
|
879
887
|
body['customPrompt'] = request.custom_prompt
|
|
888
|
+
if not UtilClient.is_unset(request.input_example):
|
|
889
|
+
body['inputExample'] = request.input_example
|
|
880
890
|
if not UtilClient.is_unset(request.model_id):
|
|
881
891
|
body['modelId'] = request.model_id
|
|
892
|
+
if not UtilClient.is_unset(request.output_example):
|
|
893
|
+
body['outputExample'] = request.output_example
|
|
882
894
|
if not UtilClient.is_unset(request.source_material):
|
|
883
895
|
body['sourceMaterial'] = request.source_material
|
|
884
896
|
if not UtilClient.is_unset(request.writing_type):
|
|
@@ -2467,13 +2467,19 @@ class RunMarketingInformationExtractResponse(TeaModel):
|
|
|
2467
2467
|
class RunMarketingInformationWritingRequest(TeaModel):
|
|
2468
2468
|
def __init__(
|
|
2469
2469
|
self,
|
|
2470
|
+
custom_limitation: str = None,
|
|
2470
2471
|
custom_prompt: str = None,
|
|
2472
|
+
input_example: str = None,
|
|
2471
2473
|
model_id: str = None,
|
|
2474
|
+
output_example: str = None,
|
|
2472
2475
|
source_material: str = None,
|
|
2473
2476
|
writing_type: str = None,
|
|
2474
2477
|
):
|
|
2478
|
+
self.custom_limitation = custom_limitation
|
|
2475
2479
|
self.custom_prompt = custom_prompt
|
|
2480
|
+
self.input_example = input_example
|
|
2476
2481
|
self.model_id = model_id
|
|
2482
|
+
self.output_example = output_example
|
|
2477
2483
|
self.source_material = source_material
|
|
2478
2484
|
self.writing_type = writing_type
|
|
2479
2485
|
|
|
@@ -2486,10 +2492,16 @@ class RunMarketingInformationWritingRequest(TeaModel):
|
|
|
2486
2492
|
return _map
|
|
2487
2493
|
|
|
2488
2494
|
result = dict()
|
|
2495
|
+
if self.custom_limitation is not None:
|
|
2496
|
+
result['customLimitation'] = self.custom_limitation
|
|
2489
2497
|
if self.custom_prompt is not None:
|
|
2490
2498
|
result['customPrompt'] = self.custom_prompt
|
|
2499
|
+
if self.input_example is not None:
|
|
2500
|
+
result['inputExample'] = self.input_example
|
|
2491
2501
|
if self.model_id is not None:
|
|
2492
2502
|
result['modelId'] = self.model_id
|
|
2503
|
+
if self.output_example is not None:
|
|
2504
|
+
result['outputExample'] = self.output_example
|
|
2493
2505
|
if self.source_material is not None:
|
|
2494
2506
|
result['sourceMaterial'] = self.source_material
|
|
2495
2507
|
if self.writing_type is not None:
|
|
@@ -2498,10 +2510,16 @@ class RunMarketingInformationWritingRequest(TeaModel):
|
|
|
2498
2510
|
|
|
2499
2511
|
def from_map(self, m: dict = None):
|
|
2500
2512
|
m = m or dict()
|
|
2513
|
+
if m.get('customLimitation') is not None:
|
|
2514
|
+
self.custom_limitation = m.get('customLimitation')
|
|
2501
2515
|
if m.get('customPrompt') is not None:
|
|
2502
2516
|
self.custom_prompt = m.get('customPrompt')
|
|
2517
|
+
if m.get('inputExample') is not None:
|
|
2518
|
+
self.input_example = m.get('inputExample')
|
|
2503
2519
|
if m.get('modelId') is not None:
|
|
2504
2520
|
self.model_id = m.get('modelId')
|
|
2521
|
+
if m.get('outputExample') is not None:
|
|
2522
|
+
self.output_example = m.get('outputExample')
|
|
2505
2523
|
if m.get('sourceMaterial') is not None:
|
|
2506
2524
|
self.source_material = m.get('sourceMaterial')
|
|
2507
2525
|
if m.get('writingType') is not None:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-quanmiaolightapp20240801
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.1
|
|
4
4
|
Summary: Alibaba Cloud QuanMiaoLightApp (20240801) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
{alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/setup.py
RENAMED
|
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
|
|
|
24
24
|
"""
|
|
25
25
|
setup module for alibabacloud_quanmiaolightapp20240801.
|
|
26
26
|
|
|
27
|
-
Created on
|
|
27
|
+
Created on 06/11/2024
|
|
28
28
|
|
|
29
29
|
@author: Alibaba Cloud SDK
|
|
30
30
|
"""
|
|
@@ -39,7 +39,7 @@ VERSION = __import__(PACKAGE).__version__
|
|
|
39
39
|
REQUIRES = [
|
|
40
40
|
"alibabacloud_tea_util>=0.3.13, <1.0.0",
|
|
41
41
|
"alibabacloud_tea_openapi>=0.3.12, <1.0.0",
|
|
42
|
-
"alibabacloud_openapi_util>=0.2.
|
|
42
|
+
"alibabacloud_openapi_util>=0.2.2, <1.0.0",
|
|
43
43
|
"alibabacloud_endpoint_util>=0.0.3, <1.0.0"
|
|
44
44
|
]
|
|
45
45
|
|
alibabacloud_quanmiaolightapp20240801-1.4.0/alibabacloud_quanmiaolightapp20240801/__init__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.4.0'
|
{alibabacloud_quanmiaolightapp20240801-1.4.0 → alibabacloud_quanmiaolightapp20240801-1.4.1}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|