tencentcloud-sdk-python-intl-en 3.0.1116__py2.py3-none-any.whl → 3.0.1117__py2.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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ccc/v20200210/ccc_client.py +1 -1
- tencentcloud/ccc/v20200210/models.py +121 -0
- {tencentcloud_sdk_python_intl_en-3.0.1116.dist-info → tencentcloud_sdk_python_intl_en-3.0.1117.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1116.dist-info → tencentcloud_sdk_python_intl_en-3.0.1117.dist-info}/RECORD +7 -7
- {tencentcloud_sdk_python_intl_en-3.0.1116.dist-info → tencentcloud_sdk_python_intl_en-3.0.1117.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1116.dist-info → tencentcloud_sdk_python_intl_en-3.0.1117.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -121,7 +121,7 @@ class CccClient(AbstractClient):
|
|
|
121
121
|
def CreateAICall(self, request):
|
|
122
122
|
"""Used to make outbound calls by invoking AI models, limited to the use of proprietary phone numbers. Currently, the Advanced version seats are available for a **limited time** free trial.
|
|
123
123
|
|
|
124
|
-
Before initiating a call, please ensure your AI model is compatible with OpenAI, Azure, or Minimax protocols, and visit the model provider's website to obtain relevant authentication information. For detailed feature descriptions, please refer to the documentation [Tencent Cloud Contact Center AI Call Platform](https://
|
|
124
|
+
Before initiating a call, please ensure your AI model is compatible with OpenAI, Azure, or Minimax protocols, and visit the model provider's website to obtain relevant authentication information. For detailed feature descriptions, please refer to the documentation [Tencent Cloud Contact Center AI Call Platform](https://www.tencentcloud.com/document/product/1229/66889).
|
|
125
125
|
|
|
126
126
|
:param request: Request instance for CreateAICall.
|
|
127
127
|
:type request: :class:`tencentcloud.ccc.v20200210.models.CreateAICallRequest`
|
|
@@ -18,6 +18,72 @@ import warnings
|
|
|
18
18
|
from tencentcloud.common.abstract_model import AbstractModel
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
class AITransferItem(AbstractModel):
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
def __init__(self):
|
|
27
|
+
r"""
|
|
28
|
+
:param _TransferFunctionName:
|
|
29
|
+
:type TransferFunctionName: str
|
|
30
|
+
:param _TransferFunctionDesc:
|
|
31
|
+
:type TransferFunctionDesc: str
|
|
32
|
+
:param _TransferSkillGroupId:
|
|
33
|
+
:type TransferSkillGroupId: int
|
|
34
|
+
"""
|
|
35
|
+
self._TransferFunctionName = None
|
|
36
|
+
self._TransferFunctionDesc = None
|
|
37
|
+
self._TransferSkillGroupId = None
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
def TransferFunctionName(self):
|
|
41
|
+
"""
|
|
42
|
+
:rtype: str
|
|
43
|
+
"""
|
|
44
|
+
return self._TransferFunctionName
|
|
45
|
+
|
|
46
|
+
@TransferFunctionName.setter
|
|
47
|
+
def TransferFunctionName(self, TransferFunctionName):
|
|
48
|
+
self._TransferFunctionName = TransferFunctionName
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
def TransferFunctionDesc(self):
|
|
52
|
+
"""
|
|
53
|
+
:rtype: str
|
|
54
|
+
"""
|
|
55
|
+
return self._TransferFunctionDesc
|
|
56
|
+
|
|
57
|
+
@TransferFunctionDesc.setter
|
|
58
|
+
def TransferFunctionDesc(self, TransferFunctionDesc):
|
|
59
|
+
self._TransferFunctionDesc = TransferFunctionDesc
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
def TransferSkillGroupId(self):
|
|
63
|
+
"""
|
|
64
|
+
:rtype: int
|
|
65
|
+
"""
|
|
66
|
+
return self._TransferSkillGroupId
|
|
67
|
+
|
|
68
|
+
@TransferSkillGroupId.setter
|
|
69
|
+
def TransferSkillGroupId(self, TransferSkillGroupId):
|
|
70
|
+
self._TransferSkillGroupId = TransferSkillGroupId
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
def _deserialize(self, params):
|
|
74
|
+
self._TransferFunctionName = params.get("TransferFunctionName")
|
|
75
|
+
self._TransferFunctionDesc = params.get("TransferFunctionDesc")
|
|
76
|
+
self._TransferSkillGroupId = params.get("TransferSkillGroupId")
|
|
77
|
+
memeber_set = set(params.keys())
|
|
78
|
+
for name, value in vars(self).items():
|
|
79
|
+
property_name = name[1:]
|
|
80
|
+
if property_name in memeber_set:
|
|
81
|
+
memeber_set.remove(property_name)
|
|
82
|
+
if len(memeber_set) > 0:
|
|
83
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
21
87
|
class AbortAgentCruiseDialingCampaignRequest(AbstractModel):
|
|
22
88
|
"""AbortAgentCruiseDialingCampaign request structure.
|
|
23
89
|
|
|
@@ -1253,6 +1319,10 @@ Currently, the supported languages are as follows. The English name of the langu
|
|
|
1253
1319
|
:type EndFunctionEnable: bool
|
|
1254
1320
|
:param _EndFunctionDesc: Effective when EndFunctionEnable is true; the description of call_end function calling, default is "End the call when user has to leave (like says bye) or you are instructed to do so."
|
|
1255
1321
|
:type EndFunctionDesc: str
|
|
1322
|
+
:param _TransferFunctionEnable:
|
|
1323
|
+
:type TransferFunctionEnable: bool
|
|
1324
|
+
:param _TransferItems:
|
|
1325
|
+
:type TransferItems: list of AITransferItem
|
|
1256
1326
|
:param _NotifyDuration: The duration after which the user hasn't spoken to trigger a notification, minimum 10 seconds, default 10 seconds
|
|
1257
1327
|
:type NotifyDuration: int
|
|
1258
1328
|
:param _NotifyMessage: The AI prompt when NotifyDuration has passed without the user speaking, default is "Sorry, I didn't hear you clearly. Can you repeat that?"
|
|
@@ -1339,6 +1409,8 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1339
1409
|
|
|
1340
1410
|
</div></div>
|
|
1341
1411
|
:type CustomTTSConfig: str
|
|
1412
|
+
:param _PromptVariables:
|
|
1413
|
+
:type PromptVariables: list of Variable
|
|
1342
1414
|
"""
|
|
1343
1415
|
self._SdkAppId = None
|
|
1344
1416
|
self._Callee = None
|
|
@@ -1357,10 +1429,13 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1357
1429
|
self._InterruptSpeechDuration = None
|
|
1358
1430
|
self._EndFunctionEnable = None
|
|
1359
1431
|
self._EndFunctionDesc = None
|
|
1432
|
+
self._TransferFunctionEnable = None
|
|
1433
|
+
self._TransferItems = None
|
|
1360
1434
|
self._NotifyDuration = None
|
|
1361
1435
|
self._NotifyMessage = None
|
|
1362
1436
|
self._NotifyMaxCount = None
|
|
1363
1437
|
self._CustomTTSConfig = None
|
|
1438
|
+
self._PromptVariables = None
|
|
1364
1439
|
|
|
1365
1440
|
@property
|
|
1366
1441
|
def SdkAppId(self):
|
|
@@ -1667,6 +1742,28 @@ Currently, the supported languages are as follows. The English name of the langu
|
|
|
1667
1742
|
def EndFunctionDesc(self, EndFunctionDesc):
|
|
1668
1743
|
self._EndFunctionDesc = EndFunctionDesc
|
|
1669
1744
|
|
|
1745
|
+
@property
|
|
1746
|
+
def TransferFunctionEnable(self):
|
|
1747
|
+
"""
|
|
1748
|
+
:rtype: bool
|
|
1749
|
+
"""
|
|
1750
|
+
return self._TransferFunctionEnable
|
|
1751
|
+
|
|
1752
|
+
@TransferFunctionEnable.setter
|
|
1753
|
+
def TransferFunctionEnable(self, TransferFunctionEnable):
|
|
1754
|
+
self._TransferFunctionEnable = TransferFunctionEnable
|
|
1755
|
+
|
|
1756
|
+
@property
|
|
1757
|
+
def TransferItems(self):
|
|
1758
|
+
"""
|
|
1759
|
+
:rtype: list of AITransferItem
|
|
1760
|
+
"""
|
|
1761
|
+
return self._TransferItems
|
|
1762
|
+
|
|
1763
|
+
@TransferItems.setter
|
|
1764
|
+
def TransferItems(self, TransferItems):
|
|
1765
|
+
self._TransferItems = TransferItems
|
|
1766
|
+
|
|
1670
1767
|
@property
|
|
1671
1768
|
def NotifyDuration(self):
|
|
1672
1769
|
"""The duration after which the user hasn't spoken to trigger a notification, minimum 10 seconds, default 10 seconds
|
|
@@ -1789,6 +1886,17 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1789
1886
|
def CustomTTSConfig(self, CustomTTSConfig):
|
|
1790
1887
|
self._CustomTTSConfig = CustomTTSConfig
|
|
1791
1888
|
|
|
1889
|
+
@property
|
|
1890
|
+
def PromptVariables(self):
|
|
1891
|
+
"""
|
|
1892
|
+
:rtype: list of Variable
|
|
1893
|
+
"""
|
|
1894
|
+
return self._PromptVariables
|
|
1895
|
+
|
|
1896
|
+
@PromptVariables.setter
|
|
1897
|
+
def PromptVariables(self, PromptVariables):
|
|
1898
|
+
self._PromptVariables = PromptVariables
|
|
1899
|
+
|
|
1792
1900
|
|
|
1793
1901
|
def _deserialize(self, params):
|
|
1794
1902
|
self._SdkAppId = params.get("SdkAppId")
|
|
@@ -1808,10 +1916,23 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1808
1916
|
self._InterruptSpeechDuration = params.get("InterruptSpeechDuration")
|
|
1809
1917
|
self._EndFunctionEnable = params.get("EndFunctionEnable")
|
|
1810
1918
|
self._EndFunctionDesc = params.get("EndFunctionDesc")
|
|
1919
|
+
self._TransferFunctionEnable = params.get("TransferFunctionEnable")
|
|
1920
|
+
if params.get("TransferItems") is not None:
|
|
1921
|
+
self._TransferItems = []
|
|
1922
|
+
for item in params.get("TransferItems"):
|
|
1923
|
+
obj = AITransferItem()
|
|
1924
|
+
obj._deserialize(item)
|
|
1925
|
+
self._TransferItems.append(obj)
|
|
1811
1926
|
self._NotifyDuration = params.get("NotifyDuration")
|
|
1812
1927
|
self._NotifyMessage = params.get("NotifyMessage")
|
|
1813
1928
|
self._NotifyMaxCount = params.get("NotifyMaxCount")
|
|
1814
1929
|
self._CustomTTSConfig = params.get("CustomTTSConfig")
|
|
1930
|
+
if params.get("PromptVariables") is not None:
|
|
1931
|
+
self._PromptVariables = []
|
|
1932
|
+
for item in params.get("PromptVariables"):
|
|
1933
|
+
obj = Variable()
|
|
1934
|
+
obj._deserialize(item)
|
|
1935
|
+
self._PromptVariables.append(obj)
|
|
1815
1936
|
memeber_set = set(params.keys())
|
|
1816
1937
|
for name, value in vars(self).items():
|
|
1817
1938
|
property_name = name[1:]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=oGmHl5K_Z9HCJhdBG2Cwak__7keycg4ep0CKFvY9Xfs,630
|
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
|
|
@@ -66,9 +66,9 @@ tencentcloud/cbs/v20170312/errorcodes.py,sha256=spsaD0VnuuaveSdTgfgwcGUpYYi5hkRy
|
|
|
66
66
|
tencentcloud/cbs/v20170312/models.py,sha256=IDfQMTM-fKTnwUCwrRr7LPchEVrcuZOgFCbWjSSZv3Q,296697
|
|
67
67
|
tencentcloud/ccc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
68
|
tencentcloud/ccc/v20200210/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
-
tencentcloud/ccc/v20200210/ccc_client.py,sha256=
|
|
69
|
+
tencentcloud/ccc/v20200210/ccc_client.py,sha256=T_mU_39f_SVzO3Kr-3GFh1RrCrPQErs9XQ5A32JuKSs,51059
|
|
70
70
|
tencentcloud/ccc/v20200210/errorcodes.py,sha256=4ND1rU15-nGQaj7CqeXpLu0gT4ajV7CQX3gf7e0-jZ8,5234
|
|
71
|
-
tencentcloud/ccc/v20200210/models.py,sha256=
|
|
71
|
+
tencentcloud/ccc/v20200210/models.py,sha256=hQaPWXlW1slcdxL4ieVatieZjsfOINK84dNd9mi6F7o,400484
|
|
72
72
|
tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
73
|
tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
74
|
tencentcloud/cdb/v20170320/cdb_client.py,sha256=lsVv0haXhHe9XbWFlQc65RbthqZKIGqdfZTcBqW7BEE,137214
|
|
@@ -614,7 +614,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
614
614
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
615
615
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
616
616
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
617
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
618
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
619
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
620
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
617
|
+
tencentcloud_sdk_python_intl_en-3.0.1117.dist-info/METADATA,sha256=NBD_Q4iEiIZZXXhjch9GHy-pcSIrSHiwLPRLDLbtKmc,1628
|
|
618
|
+
tencentcloud_sdk_python_intl_en-3.0.1117.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
619
|
+
tencentcloud_sdk_python_intl_en-3.0.1117.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
620
|
+
tencentcloud_sdk_python_intl_en-3.0.1117.dist-info/RECORD,,
|
|
File without changes
|