tencentcloud-sdk-nodejs 4.0.1023 → 4.0.1024
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.
- package/README.md +3 -3
- package/package.json +1 -1
- package/src/common/sdk_version.ts +1 -1
- package/src/services/lkeap/v20240522/lkeap_client.ts +95 -5
- package/src/services/lkeap/v20240522/lkeap_models.ts +109 -18
- package/src/services/mongodb/v20190725/mongodb_models.ts +6 -2
- package/src/services/ses/v20201002/ses_models.ts +13 -25
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/lkeap/v20240522/lkeap_client.d.ts +89 -2
- package/tencentcloud/services/lkeap/v20240522/lkeap_client.js +88 -1
- package/tencentcloud/services/lkeap/v20240522/lkeap_models.d.ts +106 -18
- package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +6 -2
- package/tencentcloud/services/ses/v20201002/ses_models.d.ts +13 -25
package/README.md
CHANGED
|
@@ -56,7 +56,7 @@ npm install tencentcloud-sdk-nodejs --save
|
|
|
56
56
|
1. 前往 [GitHub 仓库](https://github.com/tencentcloud/tencentcloud-sdk-nodejs) 或者 [Gitee 仓库](https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs) 下载源码压缩包。
|
|
57
57
|
2. 解压源码包到您项目合适的位置,例如 `sdk/tencentcloud-sdk-nodejs`。
|
|
58
58
|
3. 执行 `npm install ./sdk/tencentcloud-sdk-nodejs`。
|
|
59
|
-
4. 使用 `require("tencentcloud-sdk-nodejs")` 的方式引入
|
|
59
|
+
4. 使用 `require("tencentcloud-sdk-nodejs")` 的方式引入SDK,具体可参考示例。
|
|
60
60
|
|
|
61
61
|
# 示例
|
|
62
62
|
|
|
@@ -154,9 +154,9 @@ new XxxClient({
|
|
|
154
154
|
# 常见问题
|
|
155
155
|
- webpack打包出错/浏览器报错
|
|
156
156
|
|
|
157
|
-
请**务必不要**将此
|
|
157
|
+
请**务必不要**将此SDK直接用于web前端(包括小程序等),暴露密钥在这些环境非常不安全。
|
|
158
158
|
|
|
159
|
-
正确的做法是在自己的服务端引用此
|
|
159
|
+
正确的做法是在自己的服务端引用此SDK,并保存好密钥,做好请求鉴权;前端再调用服务端执行业务流程。
|
|
160
160
|
|
|
161
161
|
- `The "original" argument must be of type Function.`
|
|
162
162
|
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const sdkVersion = "4.0.
|
|
1
|
+
export const sdkVersion = "4.0.1024"
|
|
@@ -43,16 +43,19 @@ import {
|
|
|
43
43
|
SegmentationConfig,
|
|
44
44
|
CreateQAResponse,
|
|
45
45
|
ModifyAttributeLabelRequest,
|
|
46
|
+
GetReconstructDocumentResultResponse,
|
|
46
47
|
ReconstructDocumentSSEConfig,
|
|
47
48
|
ListDocsResponse,
|
|
48
49
|
DocumentUsage,
|
|
49
50
|
ListAttributeLabelsRequest,
|
|
50
51
|
DeleteAttributeLabelsRequest,
|
|
51
52
|
RetrieveKnowledgeRequest,
|
|
52
|
-
|
|
53
|
+
Choice,
|
|
53
54
|
CreateReconstructDocumentFlowConfig,
|
|
54
55
|
RunRerankRequest,
|
|
56
|
+
ChatUsage,
|
|
55
57
|
GetSplitDocumentResultRequest,
|
|
58
|
+
Delta,
|
|
56
59
|
ReconstructDocumentSSERequest,
|
|
57
60
|
ListAttributeLabelsResponse,
|
|
58
61
|
RetrievalRecord,
|
|
@@ -80,14 +83,14 @@ import {
|
|
|
80
83
|
CreateSplitDocumentFlowConfig,
|
|
81
84
|
RunRerankResponse,
|
|
82
85
|
CreateReconstructDocumentFlowResponse,
|
|
83
|
-
|
|
86
|
+
DeleteKnowledgeBaseRequest,
|
|
84
87
|
CreateQARequest,
|
|
85
88
|
UploadDocResponse,
|
|
86
89
|
AttributeItem,
|
|
87
90
|
EmbeddingObject,
|
|
88
91
|
Message,
|
|
89
92
|
CreateKnowledgeBaseRequest,
|
|
90
|
-
|
|
93
|
+
ChatCompletionsResponse,
|
|
91
94
|
DeleteDocsRequest,
|
|
92
95
|
} from "./lkeap_models"
|
|
93
96
|
|
|
@@ -357,8 +360,95 @@ export class Client extends AbstractClient {
|
|
|
357
360
|
}
|
|
358
361
|
|
|
359
362
|
/**
|
|
360
|
-
|
|
361
|
-
|
|
363
|
+
* #### 接口功能
|
|
364
|
+
|
|
365
|
+
调用接口,发起一次对话请求。
|
|
366
|
+
|
|
367
|
+
#### 已支持的模型
|
|
368
|
+
- DeepSeek-V3(model 参数值为**deepseek-v3**)
|
|
369
|
+
- DeepSeek-V3为671B参数MoE模型,在百科知识、数学推理等多项任务上优势突出,评测成绩在主流榜单中位列开源模型榜首。
|
|
370
|
+
- 支持64K上下文长度,最大支持8K输出长度。
|
|
371
|
+
- DeepSeek-R1(model 参数值为**deepseek-r1**)
|
|
372
|
+
- DeepSeek-R1为671B模型,使用强化学习训练,推理过程包含大量反思和验证,思维链长度可达数万字。 该系列模型在数学、代码以及各种复杂逻辑推理任务上推理效果优异,并为用户展现了完整的思考过程。
|
|
373
|
+
- 支持64K上下文长度,最大支持8K输出长度。
|
|
374
|
+
|
|
375
|
+
#### 计费说明
|
|
376
|
+
- 限时免费
|
|
377
|
+
|
|
378
|
+
本接口调用DeepSeek系列模型限时免费。即日至北京时间2025年2月25日23:59:59,所有腾讯云用户均可享受DeepSeek-V3、DeepSeek-R1模型限时免费服务,单账号限制接口并发上限为5。在此之后,模型价格将恢复至原价。
|
|
379
|
+
- 标准计费(2025年2月26日起生效)
|
|
380
|
+

|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
#### 快速接入
|
|
384
|
+
1. 完成[实名认证](https://console.cloud.tencent.com/developer/auth)。
|
|
385
|
+
2. 主账户前往[控制台](https://console.cloud.tencent.com/lkeap)开通服务。若为子账户,需由主账号在[权限管理](https://console.cloud.tencent.com/cam)中为子账号授权,关联预设策略,策略名称:QcloudLKEAPFullAccess。
|
|
386
|
+
3. 通过API Explorer[在线调试](https://console.cloud.tencent.com/api/explorer?Product=lkeap&Version=2024-05-22&Action=ChatCompletions)。
|
|
387
|
+
4. 使用[官方 SDK ](https://cloud.tencent.com/document/product/1772/115963#SDK)调用本接口(支持Python/Java/PHP/Go/Node.js/.NET等语言)。
|
|
388
|
+
|
|
389
|
+
-----------
|
|
390
|
+
|
|
391
|
+
### SDK调用示例
|
|
392
|
+
通过本地代码调用本接口(支持Python/Java/PHP/Go/Node.js/.NET等语言):下面的代码以 Python 语言为例,展示如何访问腾讯云上的DeepSeek模型API的样例。
|
|
393
|
+
(1)安装环境
|
|
394
|
+
```
|
|
395
|
+
python3 -m pip install --upgrade tencentcloud-sdk-python-common
|
|
396
|
+
python3 -m pip install --upgrade tencentcloud-sdk-python-lkeap
|
|
397
|
+
```
|
|
398
|
+
|
|
399
|
+
(2)示例代码
|
|
400
|
+
|
|
401
|
+
- 其中SecretKey和SecretID需要从腾讯云控制台获取
|
|
402
|
+
|
|
403
|
+
- 参数params中模型Model字段可以选择“deepseek-r1“和“deepseek-v3”
|
|
404
|
+
|
|
405
|
+
```
|
|
406
|
+
# -*- coding: utf-8 -*-
|
|
407
|
+
import json
|
|
408
|
+
|
|
409
|
+
from tencentcloud.common.common_client import CommonClient
|
|
410
|
+
from tencentcloud.common import credential
|
|
411
|
+
from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
|
|
412
|
+
from tencentcloud.common.profile.client_profile import ClientProfile
|
|
413
|
+
from tencentcloud.common.profile.http_profile import HttpProfile
|
|
414
|
+
|
|
415
|
+
class NonStreamResponse(object):
|
|
416
|
+
def __init__(self):
|
|
417
|
+
self.response = ""
|
|
418
|
+
|
|
419
|
+
def _deserialize(self, obj):
|
|
420
|
+
self.response = json.dumps(obj)
|
|
421
|
+
|
|
422
|
+
try:
|
|
423
|
+
# 实例化一个认证对象,入参需要传入腾讯云账户 SecretId 和 SecretKey,此处还需注意密钥对的保密
|
|
424
|
+
# 代码泄露可能会导致 SecretId 和 SecretKey 泄露,并威胁账号下所有资源的安全性。以下代码示例仅供参考,建议采用更安全的方式来使用密钥,请参见:https://cloud.tencent.com/document/product/1278/85305
|
|
425
|
+
# 密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取
|
|
426
|
+
cred = credential.Credential("", "")
|
|
427
|
+
|
|
428
|
+
httpProfile = HttpProfile()
|
|
429
|
+
httpProfile.endpoint = "lkeap.tencentcloudapi.com"
|
|
430
|
+
httpProfile.reqTimeout = 40000 # 流式接口可能耗时较长
|
|
431
|
+
clientProfile = ClientProfile()
|
|
432
|
+
clientProfile.httpProfile = httpProfile
|
|
433
|
+
|
|
434
|
+
params = "{\"Model\":\"deepseek-r1\",\"Messages\":[{\"Role\":\"user\",\"Content\":\"你好\"}],\"Stream\":true}";
|
|
435
|
+
common_client = CommonClient("lkeap", "2024-05-22", cred, "ap-guangzhou", profile=clientProfile)
|
|
436
|
+
resp = common_client._call_and_deserialize("ChatCompletions", json.loads(params), NonStreamResponse)
|
|
437
|
+
if isinstance(resp, NonStreamResponse): # 非流式响应
|
|
438
|
+
print(resp.response)
|
|
439
|
+
else: # 流式响应
|
|
440
|
+
for event in resp:
|
|
441
|
+
print(event)
|
|
442
|
+
except TencentCloudSDKException as err:
|
|
443
|
+
print(err)
|
|
444
|
+
|
|
445
|
+
```
|
|
446
|
+
|
|
447
|
+
**DeepSeek-R1使用建议**
|
|
448
|
+
|
|
449
|
+
1. 将温度设置在 0.5-0.7 范围内(建议为0.6),以防止无休止的重复或不连贯的输出。
|
|
450
|
+
2. 避免添加system prompt,所有说明都应包含在user prompt中。
|
|
451
|
+
*/
|
|
362
452
|
async ChatCompletions(
|
|
363
453
|
req: ChatCompletionsRequest,
|
|
364
454
|
cb?: (error: string, rep: ChatCompletionsResponse) => void
|
|
@@ -31,6 +31,14 @@ export interface ChatCompletionsRequest {
|
|
|
31
31
|
* 是否流式输出
|
|
32
32
|
*/
|
|
33
33
|
Stream?: boolean
|
|
34
|
+
/**
|
|
35
|
+
* 控制生成的随机性,较高的值会产生更多样化的输出。
|
|
36
|
+
*/
|
|
37
|
+
Temperature?: number
|
|
38
|
+
/**
|
|
39
|
+
* 最大生成的token数量
|
|
40
|
+
*/
|
|
41
|
+
MaxTokens?: number
|
|
34
42
|
}
|
|
35
43
|
|
|
36
44
|
/**
|
|
@@ -416,6 +424,28 @@ export interface ModifyAttributeLabelRequest {
|
|
|
416
424
|
Labels?: Array<AttributeLabelItem>
|
|
417
425
|
}
|
|
418
426
|
|
|
427
|
+
/**
|
|
428
|
+
* GetReconstructDocumentResult返回参数结构体
|
|
429
|
+
*/
|
|
430
|
+
export interface GetReconstructDocumentResultResponse {
|
|
431
|
+
/**
|
|
432
|
+
* 任务状态。- `Success`:执行完成- `Processing`:执行中- `Pause`: 暂停- `Failed`:执行失败- `WaitExecute`:等待执行
|
|
433
|
+
*/
|
|
434
|
+
Status?: string
|
|
435
|
+
/**
|
|
436
|
+
* 解析结果的临时下载地址。文件类型为zip压缩包,下载链接有效期30分钟
|
|
437
|
+
*/
|
|
438
|
+
DocumentRecognizeResultUrl?: string
|
|
439
|
+
/**
|
|
440
|
+
* 文档解析失败的页码
|
|
441
|
+
*/
|
|
442
|
+
FailedPages?: Array<ReconstructDocumentFailedPage>
|
|
443
|
+
/**
|
|
444
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
445
|
+
*/
|
|
446
|
+
RequestId?: string
|
|
447
|
+
}
|
|
448
|
+
|
|
419
449
|
/**
|
|
420
450
|
* ReconstructDocumentSSE 功能配置参数
|
|
421
451
|
*/
|
|
@@ -517,25 +547,28 @@ export interface RetrieveKnowledgeRequest {
|
|
|
517
547
|
}
|
|
518
548
|
|
|
519
549
|
/**
|
|
520
|
-
*
|
|
550
|
+
* 返回的回复, 支持多个
|
|
521
551
|
*/
|
|
522
|
-
export interface
|
|
552
|
+
export interface Choice {
|
|
523
553
|
/**
|
|
524
|
-
*
|
|
554
|
+
* 结束标志位,可能为 stop、 sensitive或者tool_calls。
|
|
555
|
+
stop 表示输出正常结束。
|
|
556
|
+
sensitive 只在开启流式输出审核时会出现,表示安全审核未通过。
|
|
557
|
+
tool_calls 标识函数调用。
|
|
525
558
|
*/
|
|
526
|
-
|
|
559
|
+
FinishReason?: string
|
|
527
560
|
/**
|
|
528
|
-
*
|
|
561
|
+
* 增量返回值,流式调用时使用该字段。
|
|
529
562
|
*/
|
|
530
|
-
|
|
563
|
+
Delta?: Delta
|
|
531
564
|
/**
|
|
532
|
-
*
|
|
565
|
+
* 返回值,非流式调用时使用该字段。
|
|
533
566
|
*/
|
|
534
|
-
|
|
567
|
+
Message?: Message
|
|
535
568
|
/**
|
|
536
|
-
*
|
|
569
|
+
* 索引值,流式调用时使用该字段。
|
|
537
570
|
*/
|
|
538
|
-
|
|
571
|
+
Index?: number
|
|
539
572
|
}
|
|
540
573
|
|
|
541
574
|
/**
|
|
@@ -581,6 +614,24 @@ export interface RunRerankRequest {
|
|
|
581
614
|
Model?: string
|
|
582
615
|
}
|
|
583
616
|
|
|
617
|
+
/**
|
|
618
|
+
* 消耗量
|
|
619
|
+
*/
|
|
620
|
+
export interface ChatUsage {
|
|
621
|
+
/**
|
|
622
|
+
* 输入token数
|
|
623
|
+
*/
|
|
624
|
+
PromptTokens?: number
|
|
625
|
+
/**
|
|
626
|
+
* 输出token数
|
|
627
|
+
*/
|
|
628
|
+
CompletionTokens?: number
|
|
629
|
+
/**
|
|
630
|
+
* 总token数
|
|
631
|
+
*/
|
|
632
|
+
TotalTokens?: number
|
|
633
|
+
}
|
|
634
|
+
|
|
584
635
|
/**
|
|
585
636
|
* GetSplitDocumentResult请求参数结构体
|
|
586
637
|
*/
|
|
@@ -591,6 +642,20 @@ export interface GetSplitDocumentResultRequest {
|
|
|
591
642
|
TaskId: string
|
|
592
643
|
}
|
|
593
644
|
|
|
645
|
+
/**
|
|
646
|
+
* 返回的内容
|
|
647
|
+
*/
|
|
648
|
+
export interface Delta {
|
|
649
|
+
/**
|
|
650
|
+
* 角色名称。
|
|
651
|
+
*/
|
|
652
|
+
Role?: string
|
|
653
|
+
/**
|
|
654
|
+
* 内容详情。
|
|
655
|
+
*/
|
|
656
|
+
Content?: string
|
|
657
|
+
}
|
|
658
|
+
|
|
594
659
|
/**
|
|
595
660
|
* ReconstructDocumentSSE请求参数结构体
|
|
596
661
|
*/
|
|
@@ -1103,13 +1168,13 @@ export interface CreateReconstructDocumentFlowResponse {
|
|
|
1103
1168
|
}
|
|
1104
1169
|
|
|
1105
1170
|
/**
|
|
1106
|
-
*
|
|
1171
|
+
* DeleteKnowledgeBase请求参数结构体
|
|
1107
1172
|
*/
|
|
1108
|
-
export interface
|
|
1173
|
+
export interface DeleteKnowledgeBaseRequest {
|
|
1109
1174
|
/**
|
|
1110
|
-
*
|
|
1175
|
+
* 知识库ID
|
|
1111
1176
|
*/
|
|
1112
|
-
|
|
1177
|
+
KnowledgeBaseId: string
|
|
1113
1178
|
}
|
|
1114
1179
|
|
|
1115
1180
|
/**
|
|
@@ -1184,6 +1249,11 @@ export interface Message {
|
|
|
1184
1249
|
* 内容
|
|
1185
1250
|
*/
|
|
1186
1251
|
Content?: string
|
|
1252
|
+
/**
|
|
1253
|
+
* 思维链内容。
|
|
1254
|
+
ReasoningConent参数仅支持出参,且只有deepseek-r1模型会返回。
|
|
1255
|
+
*/
|
|
1256
|
+
ReasoningContent?: string
|
|
1187
1257
|
}
|
|
1188
1258
|
|
|
1189
1259
|
/**
|
|
@@ -1192,13 +1262,34 @@ export interface Message {
|
|
|
1192
1262
|
export type CreateKnowledgeBaseRequest = null
|
|
1193
1263
|
|
|
1194
1264
|
/**
|
|
1195
|
-
*
|
|
1265
|
+
* ChatCompletions返回参数结构体
|
|
1196
1266
|
*/
|
|
1197
|
-
export interface
|
|
1267
|
+
export interface ChatCompletionsResponse {
|
|
1198
1268
|
/**
|
|
1199
|
-
*
|
|
1269
|
+
* Unix 时间戳,单位为秒。
|
|
1200
1270
|
*/
|
|
1201
|
-
|
|
1271
|
+
Created?: number
|
|
1272
|
+
/**
|
|
1273
|
+
* Token 统计信息。
|
|
1274
|
+
按照总 Token 数量计费。
|
|
1275
|
+
*/
|
|
1276
|
+
Usage?: ChatUsage
|
|
1277
|
+
/**
|
|
1278
|
+
* 本次请求的 RequestId。
|
|
1279
|
+
*/
|
|
1280
|
+
Id?: string
|
|
1281
|
+
/**
|
|
1282
|
+
* 回复内容。
|
|
1283
|
+
*/
|
|
1284
|
+
Choices?: Array<Choice>
|
|
1285
|
+
/**
|
|
1286
|
+
* 模型名称。
|
|
1287
|
+
*/
|
|
1288
|
+
Model?: string
|
|
1289
|
+
/**
|
|
1290
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。本接口为流式响应接口,当请求成功时,RequestId 会被放在 HTTP 响应的 Header "X-TC-RequestId" 中。
|
|
1291
|
+
*/
|
|
1292
|
+
RequestId?: string
|
|
1202
1293
|
}
|
|
1203
1294
|
|
|
1204
1295
|
/**
|
|
@@ -99,7 +99,11 @@ export interface CreateDBInstanceRequest {
|
|
|
99
99
|
*/
|
|
100
100
|
SubnetId?: string
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* 实例密码。设置要求如下:
|
|
103
|
+
- 字符个数为[8,32]。
|
|
104
|
+
- 可输入[A,Z]、[a,z]、[0,9]范围内的字符。
|
|
105
|
+
- 可输入的特殊字符包括:感叹号“!”,at“@”,警号“#“、百分号”%”、插入号“^”、星号“*”、括号“()”、下划线“_”。
|
|
106
|
+
- 不能设置单一的字母或者数字。
|
|
103
107
|
*/
|
|
104
108
|
Password?: string
|
|
105
109
|
/**
|
|
@@ -276,7 +280,7 @@ export interface KillOpsRequest {
|
|
|
276
280
|
*/
|
|
277
281
|
export interface InquirePriceRenewDBInstancesRequest {
|
|
278
282
|
/**
|
|
279
|
-
* 实例ID,格式如:cmgo-p8vn
|
|
283
|
+
* 实例ID,格式如:cmgo-p8vn****。请登录[MongoDB 控制台](https://console.cloud.tencent.com/mongodb)在实例列表复制实例 ID,且单次最多同时查询5个实例。
|
|
280
284
|
*/
|
|
281
285
|
InstanceIds: Array<string>
|
|
282
286
|
/**
|
|
@@ -319,23 +319,23 @@ export interface TemplatesMetadata {
|
|
|
319
319
|
/**
|
|
320
320
|
* 创建时间
|
|
321
321
|
*/
|
|
322
|
-
CreatedTimestamp
|
|
322
|
+
CreatedTimestamp?: number
|
|
323
323
|
/**
|
|
324
324
|
* 模板名称
|
|
325
325
|
*/
|
|
326
|
-
TemplateName
|
|
326
|
+
TemplateName?: string
|
|
327
327
|
/**
|
|
328
328
|
* 模板状态。1-审核中|0-已通过|2-拒绝|其它-不可用
|
|
329
329
|
*/
|
|
330
|
-
TemplateStatus
|
|
330
|
+
TemplateStatus?: number
|
|
331
331
|
/**
|
|
332
332
|
* 模板ID
|
|
333
333
|
*/
|
|
334
|
-
TemplateID
|
|
334
|
+
TemplateID?: number
|
|
335
335
|
/**
|
|
336
336
|
* 审核原因
|
|
337
337
|
*/
|
|
338
|
-
ReviewReason
|
|
338
|
+
ReviewReason?: string
|
|
339
339
|
}
|
|
340
340
|
|
|
341
341
|
/**
|
|
@@ -356,17 +356,14 @@ export interface ReceiverDetail {
|
|
|
356
356
|
TemplateData?: string
|
|
357
357
|
/**
|
|
358
358
|
* 无效原因
|
|
359
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
360
359
|
*/
|
|
361
360
|
Reason?: string
|
|
362
361
|
/**
|
|
363
362
|
* 1:有效,2:无效
|
|
364
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
365
363
|
*/
|
|
366
364
|
Status?: number
|
|
367
365
|
/**
|
|
368
366
|
* 收件人地址id
|
|
369
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
370
367
|
*/
|
|
371
368
|
EmailId?: number
|
|
372
369
|
}
|
|
@@ -435,36 +432,36 @@ export interface Volume {
|
|
|
435
432
|
* 日期
|
|
436
433
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
437
434
|
*/
|
|
438
|
-
SendDate
|
|
435
|
+
SendDate?: string
|
|
439
436
|
/**
|
|
440
437
|
* 邮件请求数量
|
|
441
438
|
*/
|
|
442
|
-
RequestCount
|
|
439
|
+
RequestCount?: number
|
|
443
440
|
/**
|
|
444
441
|
* 腾讯云通过数量
|
|
445
442
|
*/
|
|
446
|
-
AcceptedCount
|
|
443
|
+
AcceptedCount?: number
|
|
447
444
|
/**
|
|
448
445
|
* 送达数量
|
|
449
446
|
*/
|
|
450
|
-
DeliveredCount
|
|
447
|
+
DeliveredCount?: number
|
|
451
448
|
/**
|
|
452
449
|
* 打开邮件的用户数量,根据收件人去重
|
|
453
450
|
*/
|
|
454
|
-
OpenedCount
|
|
451
|
+
OpenedCount?: number
|
|
455
452
|
/**
|
|
456
453
|
* 点击了邮件中的链接数量用户数量
|
|
457
454
|
*/
|
|
458
|
-
ClickedCount
|
|
455
|
+
ClickedCount?: number
|
|
459
456
|
/**
|
|
460
457
|
* 退信数量
|
|
461
458
|
*/
|
|
462
|
-
BounceCount
|
|
459
|
+
BounceCount?: number
|
|
463
460
|
/**
|
|
464
461
|
* 取消订阅的用户数量
|
|
465
462
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
466
463
|
*/
|
|
467
|
-
UnsubscribeCount
|
|
464
|
+
UnsubscribeCount?: number
|
|
468
465
|
}
|
|
469
466
|
|
|
470
467
|
/**
|
|
@@ -755,12 +752,10 @@ export interface ReceiverData {
|
|
|
755
752
|
Count?: number
|
|
756
753
|
/**
|
|
757
754
|
* 收件人列表描述
|
|
758
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
759
755
|
*/
|
|
760
756
|
Desc?: string
|
|
761
757
|
/**
|
|
762
758
|
* 列表状态(1 待上传 2 上传中 3 上传完成)
|
|
763
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
764
759
|
*/
|
|
765
760
|
ReceiversStatus?: number
|
|
766
761
|
/**
|
|
@@ -769,7 +764,6 @@ export interface ReceiverData {
|
|
|
769
764
|
CreateTime?: string
|
|
770
765
|
/**
|
|
771
766
|
* 无效收件人数量
|
|
772
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
773
767
|
*/
|
|
774
768
|
InvalidCount?: number
|
|
775
769
|
}
|
|
@@ -969,27 +963,22 @@ export interface ListEmailTemplatesRequest {
|
|
|
969
963
|
export interface CreateReceiverDetailWithDataResponse {
|
|
970
964
|
/**
|
|
971
965
|
* 收件人总数
|
|
972
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
973
966
|
*/
|
|
974
967
|
TotalCount?: number
|
|
975
968
|
/**
|
|
976
969
|
* 实际上传数量
|
|
977
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
978
970
|
*/
|
|
979
971
|
ValidCount?: number
|
|
980
972
|
/**
|
|
981
973
|
* 数据过长数量
|
|
982
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
983
974
|
*/
|
|
984
975
|
TooLongCount?: number
|
|
985
976
|
/**
|
|
986
977
|
* 邮件地址为空数量
|
|
987
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
988
978
|
*/
|
|
989
979
|
EmptyEmailCount?: number
|
|
990
980
|
/**
|
|
991
981
|
* 重复数量
|
|
992
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
993
982
|
*/
|
|
994
983
|
RepeatCount?: number
|
|
995
984
|
/**
|
|
@@ -1353,7 +1342,6 @@ export interface BlackEmailAddress {
|
|
|
1353
1342
|
EmailAddress?: string
|
|
1354
1343
|
/**
|
|
1355
1344
|
* 被拉黑的理由
|
|
1356
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1357
1345
|
*/
|
|
1358
1346
|
IspDesc?: string
|
|
1359
1347
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.0.
|
|
1
|
+
export declare const sdkVersion = "4.0.1024";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { ChatCompletionsRequest, CreateSplitDocumentFlowRequest, ListQAsRequest, ReconstructDocumentSSEResponse, GetEmbeddingRequest, ImportQAsResponse, UploadDocRealtimeRequest, DescribeDocResponse, DeleteQAsRequest, ModifyQARequest, GetReconstructDocumentResultRequest, ListQAsResponse, DeleteAttributeLabelsResponse, ListDocsRequest, CreateAttributeLabelResponse, RetrieveKnowledgeResponse, CreateSplitDocumentFlowResponse, CreateQAResponse, ModifyAttributeLabelRequest, ListDocsResponse, ListAttributeLabelsRequest, DeleteAttributeLabelsRequest, RetrieveKnowledgeRequest,
|
|
3
|
+
import { ChatCompletionsRequest, CreateSplitDocumentFlowRequest, ListQAsRequest, ReconstructDocumentSSEResponse, GetEmbeddingRequest, ImportQAsResponse, UploadDocRealtimeRequest, DescribeDocResponse, DeleteQAsRequest, ModifyQARequest, GetReconstructDocumentResultRequest, ListQAsResponse, DeleteAttributeLabelsResponse, ListDocsRequest, CreateAttributeLabelResponse, RetrieveKnowledgeResponse, CreateSplitDocumentFlowResponse, CreateQAResponse, ModifyAttributeLabelRequest, GetReconstructDocumentResultResponse, ListDocsResponse, ListAttributeLabelsRequest, DeleteAttributeLabelsRequest, RetrieveKnowledgeRequest, RunRerankRequest, GetSplitDocumentResultRequest, ReconstructDocumentSSERequest, ListAttributeLabelsResponse, CreateAttributeLabelRequest, ImportQAsRequest, DescribeDocRequest, DeleteKnowledgeBaseResponse, DeleteDocsResponse, CreateReconstructDocumentFlowRequest, GetSplitDocumentResultResponse, ModifyQAResponse, UploadDocRealtimeResponse, ModifyAttributeLabelResponse, QueryRewriteResponse, UploadDocRequest, DeleteQAsResponse, CreateKnowledgeBaseResponse, GetEmbeddingResponse, QueryRewriteRequest, RunRerankResponse, CreateReconstructDocumentFlowResponse, DeleteKnowledgeBaseRequest, CreateQARequest, UploadDocResponse, CreateKnowledgeBaseRequest, ChatCompletionsResponse, DeleteDocsRequest } from "./lkeap_models";
|
|
4
4
|
/**
|
|
5
5
|
* lkeap client
|
|
6
6
|
* @class
|
|
@@ -114,7 +114,94 @@ export declare class Client extends AbstractClient {
|
|
|
114
114
|
*/
|
|
115
115
|
UploadDoc(req: UploadDocRequest, cb?: (error: string, rep: UploadDocResponse) => void): Promise<UploadDocResponse>;
|
|
116
116
|
/**
|
|
117
|
-
*
|
|
117
|
+
* #### 接口功能
|
|
118
|
+
|
|
119
|
+
调用接口,发起一次对话请求。
|
|
120
|
+
|
|
121
|
+
#### 已支持的模型
|
|
122
|
+
- DeepSeek-V3(model 参数值为**deepseek-v3**)
|
|
123
|
+
- DeepSeek-V3为671B参数MoE模型,在百科知识、数学推理等多项任务上优势突出,评测成绩在主流榜单中位列开源模型榜首。
|
|
124
|
+
- 支持64K上下文长度,最大支持8K输出长度。
|
|
125
|
+
- DeepSeek-R1(model 参数值为**deepseek-r1**)
|
|
126
|
+
- DeepSeek-R1为671B模型,使用强化学习训练,推理过程包含大量反思和验证,思维链长度可达数万字。 该系列模型在数学、代码以及各种复杂逻辑推理任务上推理效果优异,并为用户展现了完整的思考过程。
|
|
127
|
+
- 支持64K上下文长度,最大支持8K输出长度。
|
|
128
|
+
|
|
129
|
+
#### 计费说明
|
|
130
|
+
- 限时免费
|
|
131
|
+
|
|
132
|
+
本接口调用DeepSeek系列模型限时免费。即日至北京时间2025年2月25日23:59:59,所有腾讯云用户均可享受DeepSeek-V3、DeepSeek-R1模型限时免费服务,单账号限制接口并发上限为5。在此之后,模型价格将恢复至原价。
|
|
133
|
+
- 标准计费(2025年2月26日起生效)
|
|
134
|
+

|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
#### 快速接入
|
|
138
|
+
1. 完成[实名认证](https://console.cloud.tencent.com/developer/auth)。
|
|
139
|
+
2. 主账户前往[控制台](https://console.cloud.tencent.com/lkeap)开通服务。若为子账户,需由主账号在[权限管理](https://console.cloud.tencent.com/cam)中为子账号授权,关联预设策略,策略名称:QcloudLKEAPFullAccess。
|
|
140
|
+
3. 通过API Explorer[在线调试](https://console.cloud.tencent.com/api/explorer?Product=lkeap&Version=2024-05-22&Action=ChatCompletions)。
|
|
141
|
+
4. 使用[官方 SDK ](https://cloud.tencent.com/document/product/1772/115963#SDK)调用本接口(支持Python/Java/PHP/Go/Node.js/.NET等语言)。
|
|
142
|
+
|
|
143
|
+
-----------
|
|
144
|
+
|
|
145
|
+
### SDK调用示例
|
|
146
|
+
通过本地代码调用本接口(支持Python/Java/PHP/Go/Node.js/.NET等语言):下面的代码以 Python 语言为例,展示如何访问腾讯云上的DeepSeek模型API的样例。
|
|
147
|
+
(1)安装环境
|
|
148
|
+
```
|
|
149
|
+
python3 -m pip install --upgrade tencentcloud-sdk-python-common
|
|
150
|
+
python3 -m pip install --upgrade tencentcloud-sdk-python-lkeap
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
(2)示例代码
|
|
154
|
+
|
|
155
|
+
- 其中SecretKey和SecretID需要从腾讯云控制台获取
|
|
156
|
+
|
|
157
|
+
- 参数params中模型Model字段可以选择“deepseek-r1“和“deepseek-v3”
|
|
158
|
+
|
|
159
|
+
```
|
|
160
|
+
# -*- coding: utf-8 -*-
|
|
161
|
+
import json
|
|
162
|
+
|
|
163
|
+
from tencentcloud.common.common_client import CommonClient
|
|
164
|
+
from tencentcloud.common import credential
|
|
165
|
+
from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
|
|
166
|
+
from tencentcloud.common.profile.client_profile import ClientProfile
|
|
167
|
+
from tencentcloud.common.profile.http_profile import HttpProfile
|
|
168
|
+
|
|
169
|
+
class NonStreamResponse(object):
|
|
170
|
+
def __init__(self):
|
|
171
|
+
self.response = ""
|
|
172
|
+
|
|
173
|
+
def _deserialize(self, obj):
|
|
174
|
+
self.response = json.dumps(obj)
|
|
175
|
+
|
|
176
|
+
try:
|
|
177
|
+
# 实例化一个认证对象,入参需要传入腾讯云账户 SecretId 和 SecretKey,此处还需注意密钥对的保密
|
|
178
|
+
# 代码泄露可能会导致 SecretId 和 SecretKey 泄露,并威胁账号下所有资源的安全性。以下代码示例仅供参考,建议采用更安全的方式来使用密钥,请参见:https://cloud.tencent.com/document/product/1278/85305
|
|
179
|
+
# 密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取
|
|
180
|
+
cred = credential.Credential("", "")
|
|
181
|
+
|
|
182
|
+
httpProfile = HttpProfile()
|
|
183
|
+
httpProfile.endpoint = "lkeap.tencentcloudapi.com"
|
|
184
|
+
httpProfile.reqTimeout = 40000 # 流式接口可能耗时较长
|
|
185
|
+
clientProfile = ClientProfile()
|
|
186
|
+
clientProfile.httpProfile = httpProfile
|
|
187
|
+
|
|
188
|
+
params = "{\"Model\":\"deepseek-r1\",\"Messages\":[{\"Role\":\"user\",\"Content\":\"你好\"}],\"Stream\":true}";
|
|
189
|
+
common_client = CommonClient("lkeap", "2024-05-22", cred, "ap-guangzhou", profile=clientProfile)
|
|
190
|
+
resp = common_client._call_and_deserialize("ChatCompletions", json.loads(params), NonStreamResponse)
|
|
191
|
+
if isinstance(resp, NonStreamResponse): # 非流式响应
|
|
192
|
+
print(resp.response)
|
|
193
|
+
else: # 流式响应
|
|
194
|
+
for event in resp:
|
|
195
|
+
print(event)
|
|
196
|
+
except TencentCloudSDKException as err:
|
|
197
|
+
print(err)
|
|
198
|
+
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
**DeepSeek-R1使用建议**
|
|
202
|
+
|
|
203
|
+
1. 将温度设置在 0.5-0.7 范围内(建议为0.6),以防止无休止的重复或不连贯的输出。
|
|
204
|
+
2. 避免添加system prompt,所有说明都应包含在user prompt中。
|
|
118
205
|
*/
|
|
119
206
|
ChatCompletions(req: ChatCompletionsRequest, cb?: (error: string, rep: ChatCompletionsResponse) => void): Promise<ChatCompletionsResponse>;
|
|
120
207
|
}
|
|
@@ -184,7 +184,94 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
184
184
|
return this.request("UploadDoc", req, cb);
|
|
185
185
|
}
|
|
186
186
|
/**
|
|
187
|
-
*
|
|
187
|
+
* #### 接口功能
|
|
188
|
+
|
|
189
|
+
调用接口,发起一次对话请求。
|
|
190
|
+
|
|
191
|
+
#### 已支持的模型
|
|
192
|
+
- DeepSeek-V3(model 参数值为**deepseek-v3**)
|
|
193
|
+
- DeepSeek-V3为671B参数MoE模型,在百科知识、数学推理等多项任务上优势突出,评测成绩在主流榜单中位列开源模型榜首。
|
|
194
|
+
- 支持64K上下文长度,最大支持8K输出长度。
|
|
195
|
+
- DeepSeek-R1(model 参数值为**deepseek-r1**)
|
|
196
|
+
- DeepSeek-R1为671B模型,使用强化学习训练,推理过程包含大量反思和验证,思维链长度可达数万字。 该系列模型在数学、代码以及各种复杂逻辑推理任务上推理效果优异,并为用户展现了完整的思考过程。
|
|
197
|
+
- 支持64K上下文长度,最大支持8K输出长度。
|
|
198
|
+
|
|
199
|
+
#### 计费说明
|
|
200
|
+
- 限时免费
|
|
201
|
+
|
|
202
|
+
本接口调用DeepSeek系列模型限时免费。即日至北京时间2025年2月25日23:59:59,所有腾讯云用户均可享受DeepSeek-V3、DeepSeek-R1模型限时免费服务,单账号限制接口并发上限为5。在此之后,模型价格将恢复至原价。
|
|
203
|
+
- 标准计费(2025年2月26日起生效)
|
|
204
|
+

|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
#### 快速接入
|
|
208
|
+
1. 完成[实名认证](https://console.cloud.tencent.com/developer/auth)。
|
|
209
|
+
2. 主账户前往[控制台](https://console.cloud.tencent.com/lkeap)开通服务。若为子账户,需由主账号在[权限管理](https://console.cloud.tencent.com/cam)中为子账号授权,关联预设策略,策略名称:QcloudLKEAPFullAccess。
|
|
210
|
+
3. 通过API Explorer[在线调试](https://console.cloud.tencent.com/api/explorer?Product=lkeap&Version=2024-05-22&Action=ChatCompletions)。
|
|
211
|
+
4. 使用[官方 SDK ](https://cloud.tencent.com/document/product/1772/115963#SDK)调用本接口(支持Python/Java/PHP/Go/Node.js/.NET等语言)。
|
|
212
|
+
|
|
213
|
+
-----------
|
|
214
|
+
|
|
215
|
+
### SDK调用示例
|
|
216
|
+
通过本地代码调用本接口(支持Python/Java/PHP/Go/Node.js/.NET等语言):下面的代码以 Python 语言为例,展示如何访问腾讯云上的DeepSeek模型API的样例。
|
|
217
|
+
(1)安装环境
|
|
218
|
+
```
|
|
219
|
+
python3 -m pip install --upgrade tencentcloud-sdk-python-common
|
|
220
|
+
python3 -m pip install --upgrade tencentcloud-sdk-python-lkeap
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
(2)示例代码
|
|
224
|
+
|
|
225
|
+
- 其中SecretKey和SecretID需要从腾讯云控制台获取
|
|
226
|
+
|
|
227
|
+
- 参数params中模型Model字段可以选择“deepseek-r1“和“deepseek-v3”
|
|
228
|
+
|
|
229
|
+
```
|
|
230
|
+
# -*- coding: utf-8 -*-
|
|
231
|
+
import json
|
|
232
|
+
|
|
233
|
+
from tencentcloud.common.common_client import CommonClient
|
|
234
|
+
from tencentcloud.common import credential
|
|
235
|
+
from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
|
|
236
|
+
from tencentcloud.common.profile.client_profile import ClientProfile
|
|
237
|
+
from tencentcloud.common.profile.http_profile import HttpProfile
|
|
238
|
+
|
|
239
|
+
class NonStreamResponse(object):
|
|
240
|
+
def __init__(self):
|
|
241
|
+
self.response = ""
|
|
242
|
+
|
|
243
|
+
def _deserialize(self, obj):
|
|
244
|
+
self.response = json.dumps(obj)
|
|
245
|
+
|
|
246
|
+
try:
|
|
247
|
+
# 实例化一个认证对象,入参需要传入腾讯云账户 SecretId 和 SecretKey,此处还需注意密钥对的保密
|
|
248
|
+
# 代码泄露可能会导致 SecretId 和 SecretKey 泄露,并威胁账号下所有资源的安全性。以下代码示例仅供参考,建议采用更安全的方式来使用密钥,请参见:https://cloud.tencent.com/document/product/1278/85305
|
|
249
|
+
# 密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取
|
|
250
|
+
cred = credential.Credential("", "")
|
|
251
|
+
|
|
252
|
+
httpProfile = HttpProfile()
|
|
253
|
+
httpProfile.endpoint = "lkeap.tencentcloudapi.com"
|
|
254
|
+
httpProfile.reqTimeout = 40000 # 流式接口可能耗时较长
|
|
255
|
+
clientProfile = ClientProfile()
|
|
256
|
+
clientProfile.httpProfile = httpProfile
|
|
257
|
+
|
|
258
|
+
params = "{\"Model\":\"deepseek-r1\",\"Messages\":[{\"Role\":\"user\",\"Content\":\"你好\"}],\"Stream\":true}";
|
|
259
|
+
common_client = CommonClient("lkeap", "2024-05-22", cred, "ap-guangzhou", profile=clientProfile)
|
|
260
|
+
resp = common_client._call_and_deserialize("ChatCompletions", json.loads(params), NonStreamResponse)
|
|
261
|
+
if isinstance(resp, NonStreamResponse): # 非流式响应
|
|
262
|
+
print(resp.response)
|
|
263
|
+
else: # 流式响应
|
|
264
|
+
for event in resp:
|
|
265
|
+
print(event)
|
|
266
|
+
except TencentCloudSDKException as err:
|
|
267
|
+
print(err)
|
|
268
|
+
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
**DeepSeek-R1使用建议**
|
|
272
|
+
|
|
273
|
+
1. 将温度设置在 0.5-0.7 范围内(建议为0.6),以防止无休止的重复或不连贯的输出。
|
|
274
|
+
2. 避免添加system prompt,所有说明都应包含在user prompt中。
|
|
188
275
|
*/
|
|
189
276
|
async ChatCompletions(req, cb) {
|
|
190
277
|
return this.request("ChatCompletions", req, cb);
|
|
@@ -14,6 +14,14 @@ export interface ChatCompletionsRequest {
|
|
|
14
14
|
* 是否流式输出
|
|
15
15
|
*/
|
|
16
16
|
Stream?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* 控制生成的随机性,较高的值会产生更多样化的输出。
|
|
19
|
+
*/
|
|
20
|
+
Temperature?: number;
|
|
21
|
+
/**
|
|
22
|
+
* 最大生成的token数量
|
|
23
|
+
*/
|
|
24
|
+
MaxTokens?: number;
|
|
17
25
|
}
|
|
18
26
|
/**
|
|
19
27
|
* CreateSplitDocumentFlow请求参数结构体
|
|
@@ -374,6 +382,27 @@ export interface ModifyAttributeLabelRequest {
|
|
|
374
382
|
*/
|
|
375
383
|
Labels?: Array<AttributeLabelItem>;
|
|
376
384
|
}
|
|
385
|
+
/**
|
|
386
|
+
* GetReconstructDocumentResult返回参数结构体
|
|
387
|
+
*/
|
|
388
|
+
export interface GetReconstructDocumentResultResponse {
|
|
389
|
+
/**
|
|
390
|
+
* 任务状态。- `Success`:执行完成- `Processing`:执行中- `Pause`: 暂停- `Failed`:执行失败- `WaitExecute`:等待执行
|
|
391
|
+
*/
|
|
392
|
+
Status?: string;
|
|
393
|
+
/**
|
|
394
|
+
* 解析结果的临时下载地址。文件类型为zip压缩包,下载链接有效期30分钟
|
|
395
|
+
*/
|
|
396
|
+
DocumentRecognizeResultUrl?: string;
|
|
397
|
+
/**
|
|
398
|
+
* 文档解析失败的页码
|
|
399
|
+
*/
|
|
400
|
+
FailedPages?: Array<ReconstructDocumentFailedPage>;
|
|
401
|
+
/**
|
|
402
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
403
|
+
*/
|
|
404
|
+
RequestId?: string;
|
|
405
|
+
}
|
|
377
406
|
/**
|
|
378
407
|
* ReconstructDocumentSSE 功能配置参数
|
|
379
408
|
*/
|
|
@@ -469,25 +498,28 @@ export interface RetrieveKnowledgeRequest {
|
|
|
469
498
|
AttributeLabels?: Array<LabelItem>;
|
|
470
499
|
}
|
|
471
500
|
/**
|
|
472
|
-
*
|
|
501
|
+
* 返回的回复, 支持多个
|
|
473
502
|
*/
|
|
474
|
-
export interface
|
|
503
|
+
export interface Choice {
|
|
475
504
|
/**
|
|
476
|
-
*
|
|
505
|
+
* 结束标志位,可能为 stop、 sensitive或者tool_calls。
|
|
506
|
+
stop 表示输出正常结束。
|
|
507
|
+
sensitive 只在开启流式输出审核时会出现,表示安全审核未通过。
|
|
508
|
+
tool_calls 标识函数调用。
|
|
477
509
|
*/
|
|
478
|
-
|
|
510
|
+
FinishReason?: string;
|
|
479
511
|
/**
|
|
480
|
-
*
|
|
512
|
+
* 增量返回值,流式调用时使用该字段。
|
|
481
513
|
*/
|
|
482
|
-
|
|
514
|
+
Delta?: Delta;
|
|
483
515
|
/**
|
|
484
|
-
*
|
|
516
|
+
* 返回值,非流式调用时使用该字段。
|
|
485
517
|
*/
|
|
486
|
-
|
|
518
|
+
Message?: Message;
|
|
487
519
|
/**
|
|
488
|
-
*
|
|
520
|
+
* 索引值,流式调用时使用该字段。
|
|
489
521
|
*/
|
|
490
|
-
|
|
522
|
+
Index?: number;
|
|
491
523
|
}
|
|
492
524
|
/**
|
|
493
525
|
* 创建智能文档解析任务的配置信息
|
|
@@ -530,6 +562,23 @@ export interface RunRerankRequest {
|
|
|
530
562
|
*/
|
|
531
563
|
Model?: string;
|
|
532
564
|
}
|
|
565
|
+
/**
|
|
566
|
+
* 消耗量
|
|
567
|
+
*/
|
|
568
|
+
export interface ChatUsage {
|
|
569
|
+
/**
|
|
570
|
+
* 输入token数
|
|
571
|
+
*/
|
|
572
|
+
PromptTokens?: number;
|
|
573
|
+
/**
|
|
574
|
+
* 输出token数
|
|
575
|
+
*/
|
|
576
|
+
CompletionTokens?: number;
|
|
577
|
+
/**
|
|
578
|
+
* 总token数
|
|
579
|
+
*/
|
|
580
|
+
TotalTokens?: number;
|
|
581
|
+
}
|
|
533
582
|
/**
|
|
534
583
|
* GetSplitDocumentResult请求参数结构体
|
|
535
584
|
*/
|
|
@@ -539,6 +588,19 @@ export interface GetSplitDocumentResultRequest {
|
|
|
539
588
|
*/
|
|
540
589
|
TaskId: string;
|
|
541
590
|
}
|
|
591
|
+
/**
|
|
592
|
+
* 返回的内容
|
|
593
|
+
*/
|
|
594
|
+
export interface Delta {
|
|
595
|
+
/**
|
|
596
|
+
* 角色名称。
|
|
597
|
+
*/
|
|
598
|
+
Role?: string;
|
|
599
|
+
/**
|
|
600
|
+
* 内容详情。
|
|
601
|
+
*/
|
|
602
|
+
Content?: string;
|
|
603
|
+
}
|
|
542
604
|
/**
|
|
543
605
|
* ReconstructDocumentSSE请求参数结构体
|
|
544
606
|
*/
|
|
@@ -1024,13 +1086,13 @@ export interface CreateReconstructDocumentFlowResponse {
|
|
|
1024
1086
|
RequestId?: string;
|
|
1025
1087
|
}
|
|
1026
1088
|
/**
|
|
1027
|
-
*
|
|
1089
|
+
* DeleteKnowledgeBase请求参数结构体
|
|
1028
1090
|
*/
|
|
1029
|
-
export interface
|
|
1091
|
+
export interface DeleteKnowledgeBaseRequest {
|
|
1030
1092
|
/**
|
|
1031
|
-
*
|
|
1093
|
+
* 知识库ID
|
|
1032
1094
|
*/
|
|
1033
|
-
|
|
1095
|
+
KnowledgeBaseId: string;
|
|
1034
1096
|
}
|
|
1035
1097
|
/**
|
|
1036
1098
|
* CreateQA请求参数结构体
|
|
@@ -1100,19 +1162,45 @@ export interface Message {
|
|
|
1100
1162
|
* 内容
|
|
1101
1163
|
*/
|
|
1102
1164
|
Content?: string;
|
|
1165
|
+
/**
|
|
1166
|
+
* 思维链内容。
|
|
1167
|
+
ReasoningConent参数仅支持出参,且只有deepseek-r1模型会返回。
|
|
1168
|
+
*/
|
|
1169
|
+
ReasoningContent?: string;
|
|
1103
1170
|
}
|
|
1104
1171
|
/**
|
|
1105
1172
|
* CreateKnowledgeBase请求参数结构体
|
|
1106
1173
|
*/
|
|
1107
1174
|
export declare type CreateKnowledgeBaseRequest = null;
|
|
1108
1175
|
/**
|
|
1109
|
-
*
|
|
1176
|
+
* ChatCompletions返回参数结构体
|
|
1110
1177
|
*/
|
|
1111
|
-
export interface
|
|
1178
|
+
export interface ChatCompletionsResponse {
|
|
1112
1179
|
/**
|
|
1113
|
-
*
|
|
1180
|
+
* Unix 时间戳,单位为秒。
|
|
1114
1181
|
*/
|
|
1115
|
-
|
|
1182
|
+
Created?: number;
|
|
1183
|
+
/**
|
|
1184
|
+
* Token 统计信息。
|
|
1185
|
+
按照总 Token 数量计费。
|
|
1186
|
+
*/
|
|
1187
|
+
Usage?: ChatUsage;
|
|
1188
|
+
/**
|
|
1189
|
+
* 本次请求的 RequestId。
|
|
1190
|
+
*/
|
|
1191
|
+
Id?: string;
|
|
1192
|
+
/**
|
|
1193
|
+
* 回复内容。
|
|
1194
|
+
*/
|
|
1195
|
+
Choices?: Array<Choice>;
|
|
1196
|
+
/**
|
|
1197
|
+
* 模型名称。
|
|
1198
|
+
*/
|
|
1199
|
+
Model?: string;
|
|
1200
|
+
/**
|
|
1201
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。本接口为流式响应接口,当请求成功时,RequestId 会被放在 HTTP 响应的 Header "X-TC-RequestId" 中。
|
|
1202
|
+
*/
|
|
1203
|
+
RequestId?: string;
|
|
1116
1204
|
}
|
|
1117
1205
|
/**
|
|
1118
1206
|
* DeleteDocs请求参数结构体
|
|
@@ -81,7 +81,11 @@ export interface CreateDBInstanceRequest {
|
|
|
81
81
|
*/
|
|
82
82
|
SubnetId?: string;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* 实例密码。设置要求如下:
|
|
85
|
+
- 字符个数为[8,32]。
|
|
86
|
+
- 可输入[A,Z]、[a,z]、[0,9]范围内的字符。
|
|
87
|
+
- 可输入的特殊字符包括:感叹号“!”,at“@”,警号“#“、百分号”%”、插入号“^”、星号“*”、括号“()”、下划线“_”。
|
|
88
|
+
- 不能设置单一的字母或者数字。
|
|
85
89
|
*/
|
|
86
90
|
Password?: string;
|
|
87
91
|
/**
|
|
@@ -251,7 +255,7 @@ export interface KillOpsRequest {
|
|
|
251
255
|
*/
|
|
252
256
|
export interface InquirePriceRenewDBInstancesRequest {
|
|
253
257
|
/**
|
|
254
|
-
* 实例ID,格式如:cmgo-p8vn
|
|
258
|
+
* 实例ID,格式如:cmgo-p8vn****。请登录[MongoDB 控制台](https://console.cloud.tencent.com/mongodb)在实例列表复制实例 ID,且单次最多同时查询5个实例。
|
|
255
259
|
*/
|
|
256
260
|
InstanceIds: Array<string>;
|
|
257
261
|
/**
|
|
@@ -287,23 +287,23 @@ export interface TemplatesMetadata {
|
|
|
287
287
|
/**
|
|
288
288
|
* 创建时间
|
|
289
289
|
*/
|
|
290
|
-
CreatedTimestamp
|
|
290
|
+
CreatedTimestamp?: number;
|
|
291
291
|
/**
|
|
292
292
|
* 模板名称
|
|
293
293
|
*/
|
|
294
|
-
TemplateName
|
|
294
|
+
TemplateName?: string;
|
|
295
295
|
/**
|
|
296
296
|
* 模板状态。1-审核中|0-已通过|2-拒绝|其它-不可用
|
|
297
297
|
*/
|
|
298
|
-
TemplateStatus
|
|
298
|
+
TemplateStatus?: number;
|
|
299
299
|
/**
|
|
300
300
|
* 模板ID
|
|
301
301
|
*/
|
|
302
|
-
TemplateID
|
|
302
|
+
TemplateID?: number;
|
|
303
303
|
/**
|
|
304
304
|
* 审核原因
|
|
305
305
|
*/
|
|
306
|
-
ReviewReason
|
|
306
|
+
ReviewReason?: string;
|
|
307
307
|
}
|
|
308
308
|
/**
|
|
309
309
|
* 收件人列表详情
|
|
@@ -323,17 +323,14 @@ export interface ReceiverDetail {
|
|
|
323
323
|
TemplateData?: string;
|
|
324
324
|
/**
|
|
325
325
|
* 无效原因
|
|
326
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
327
326
|
*/
|
|
328
327
|
Reason?: string;
|
|
329
328
|
/**
|
|
330
329
|
* 1:有效,2:无效
|
|
331
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
332
330
|
*/
|
|
333
331
|
Status?: number;
|
|
334
332
|
/**
|
|
335
333
|
* 收件人地址id
|
|
336
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
337
334
|
*/
|
|
338
335
|
EmailId?: number;
|
|
339
336
|
}
|
|
@@ -397,36 +394,36 @@ export interface Volume {
|
|
|
397
394
|
* 日期
|
|
398
395
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
399
396
|
*/
|
|
400
|
-
SendDate
|
|
397
|
+
SendDate?: string;
|
|
401
398
|
/**
|
|
402
399
|
* 邮件请求数量
|
|
403
400
|
*/
|
|
404
|
-
RequestCount
|
|
401
|
+
RequestCount?: number;
|
|
405
402
|
/**
|
|
406
403
|
* 腾讯云通过数量
|
|
407
404
|
*/
|
|
408
|
-
AcceptedCount
|
|
405
|
+
AcceptedCount?: number;
|
|
409
406
|
/**
|
|
410
407
|
* 送达数量
|
|
411
408
|
*/
|
|
412
|
-
DeliveredCount
|
|
409
|
+
DeliveredCount?: number;
|
|
413
410
|
/**
|
|
414
411
|
* 打开邮件的用户数量,根据收件人去重
|
|
415
412
|
*/
|
|
416
|
-
OpenedCount
|
|
413
|
+
OpenedCount?: number;
|
|
417
414
|
/**
|
|
418
415
|
* 点击了邮件中的链接数量用户数量
|
|
419
416
|
*/
|
|
420
|
-
ClickedCount
|
|
417
|
+
ClickedCount?: number;
|
|
421
418
|
/**
|
|
422
419
|
* 退信数量
|
|
423
420
|
*/
|
|
424
|
-
BounceCount
|
|
421
|
+
BounceCount?: number;
|
|
425
422
|
/**
|
|
426
423
|
* 取消订阅的用户数量
|
|
427
424
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
428
425
|
*/
|
|
429
|
-
UnsubscribeCount
|
|
426
|
+
UnsubscribeCount?: number;
|
|
430
427
|
}
|
|
431
428
|
/**
|
|
432
429
|
* UpdateEmailIdentity请求参数结构体
|
|
@@ -703,12 +700,10 @@ export interface ReceiverData {
|
|
|
703
700
|
Count?: number;
|
|
704
701
|
/**
|
|
705
702
|
* 收件人列表描述
|
|
706
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
707
703
|
*/
|
|
708
704
|
Desc?: string;
|
|
709
705
|
/**
|
|
710
706
|
* 列表状态(1 待上传 2 上传中 3 上传完成)
|
|
711
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
712
707
|
*/
|
|
713
708
|
ReceiversStatus?: number;
|
|
714
709
|
/**
|
|
@@ -717,7 +712,6 @@ export interface ReceiverData {
|
|
|
717
712
|
CreateTime?: string;
|
|
718
713
|
/**
|
|
719
714
|
* 无效收件人数量
|
|
720
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
721
715
|
*/
|
|
722
716
|
InvalidCount?: number;
|
|
723
717
|
}
|
|
@@ -908,27 +902,22 @@ export interface ListEmailTemplatesRequest {
|
|
|
908
902
|
export interface CreateReceiverDetailWithDataResponse {
|
|
909
903
|
/**
|
|
910
904
|
* 收件人总数
|
|
911
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
912
905
|
*/
|
|
913
906
|
TotalCount?: number;
|
|
914
907
|
/**
|
|
915
908
|
* 实际上传数量
|
|
916
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
917
909
|
*/
|
|
918
910
|
ValidCount?: number;
|
|
919
911
|
/**
|
|
920
912
|
* 数据过长数量
|
|
921
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
922
913
|
*/
|
|
923
914
|
TooLongCount?: number;
|
|
924
915
|
/**
|
|
925
916
|
* 邮件地址为空数量
|
|
926
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
927
917
|
*/
|
|
928
918
|
EmptyEmailCount?: number;
|
|
929
919
|
/**
|
|
930
920
|
* 重复数量
|
|
931
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
932
921
|
*/
|
|
933
922
|
RepeatCount?: number;
|
|
934
923
|
/**
|
|
@@ -1274,7 +1263,6 @@ export interface BlackEmailAddress {
|
|
|
1274
1263
|
EmailAddress?: string;
|
|
1275
1264
|
/**
|
|
1276
1265
|
* 被拉黑的理由
|
|
1277
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1278
1266
|
*/
|
|
1279
1267
|
IspDesc?: string;
|
|
1280
1268
|
}
|