tencentcloud-sdk-nodejs-iotexplorer 4.1.185 → 4.1.190
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/package.json
CHANGED
|
@@ -803,7 +803,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
803
803
|
*/
|
|
804
804
|
CreateFenceBind(req: CreateFenceBindRequest, cb?: (error: string, rep: CreateFenceBindResponse) => void): Promise<CreateFenceBindResponse>;
|
|
805
805
|
/**
|
|
806
|
-
*
|
|
806
|
+
* 上传文件并同步执行 TWeSee 语义理解任务
|
|
807
807
|
*/
|
|
808
808
|
InvokeTWeSeeRecognitionTaskWithFile(req: InvokeTWeSeeRecognitionTaskWithFileRequest, cb?: (error: string, rep: InvokeTWeSeeRecognitionTaskWithFileResponse) => void): Promise<InvokeTWeSeeRecognitionTaskWithFileResponse>;
|
|
809
809
|
/**
|
|
@@ -1221,7 +1221,7 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1221
1221
|
return this.request("CreateFenceBind", req, cb);
|
|
1222
1222
|
}
|
|
1223
1223
|
/**
|
|
1224
|
-
*
|
|
1224
|
+
* 上传文件并同步执行 TWeSee 语义理解任务
|
|
1225
1225
|
*/
|
|
1226
1226
|
async InvokeTWeSeeRecognitionTaskWithFile(req, cb) {
|
|
1227
1227
|
return this.request("InvokeTWeSeeRecognitionTaskWithFile", req, cb);
|
|
@@ -2531,6 +2531,18 @@ export interface TalkAIBotInfo {
|
|
|
2531
2531
|
* 自定义工具列表,最多可创建10个
|
|
2532
2532
|
*/
|
|
2533
2533
|
CustomTools?: string;
|
|
2534
|
+
/**
|
|
2535
|
+
* WebHook工具配置(JSON字符串格式)
|
|
2536
|
+
*/
|
|
2537
|
+
WebhookTools?: string;
|
|
2538
|
+
/**
|
|
2539
|
+
* 智能体模板类型
|
|
2540
|
+
*/
|
|
2541
|
+
BotType?: string;
|
|
2542
|
+
/**
|
|
2543
|
+
* 知识库相关配置(JSON字符串格式)
|
|
2544
|
+
*/
|
|
2545
|
+
RAGConfig?: string;
|
|
2534
2546
|
}
|
|
2535
2547
|
/**
|
|
2536
2548
|
* DescribeFreeCloudStorageNum请求参数结构体
|
|
@@ -2589,6 +2601,18 @@ export interface ModifyTWeTalkAIBotRequest {
|
|
|
2589
2601
|
* 自定义工具配置,最多可创建10个
|
|
2590
2602
|
*/
|
|
2591
2603
|
CustomTools?: string;
|
|
2604
|
+
/**
|
|
2605
|
+
* WebHook工具配置(JSON字符串格式)
|
|
2606
|
+
*/
|
|
2607
|
+
WebhookTools?: string;
|
|
2608
|
+
/**
|
|
2609
|
+
* 智能体模板类型
|
|
2610
|
+
*/
|
|
2611
|
+
BotType?: string;
|
|
2612
|
+
/**
|
|
2613
|
+
* 知识库相关配置(JSON字符串格式)
|
|
2614
|
+
*/
|
|
2615
|
+
RAGConfig?: string;
|
|
2592
2616
|
}
|
|
2593
2617
|
/**
|
|
2594
2618
|
* DescribeDevicePositionList请求参数结构体
|
|
@@ -4061,6 +4085,18 @@ export interface TalkAgentConfigInfo {
|
|
|
4061
4085
|
* 复刻音色
|
|
4062
4086
|
*/
|
|
4063
4087
|
FastVoiceType?: string;
|
|
4088
|
+
/**
|
|
4089
|
+
* 实时字幕回调地址,支持HTTP/HTTPS
|
|
4090
|
+
*/
|
|
4091
|
+
SubtitleCallbackUrl?: string;
|
|
4092
|
+
/**
|
|
4093
|
+
* 回调签名密钥,最大32字符,用于HMAC SHA256签名
|
|
4094
|
+
*/
|
|
4095
|
+
SubtitleCallbackSignKey?: string;
|
|
4096
|
+
/**
|
|
4097
|
+
* 字幕推送超时时间(秒),参考TRTC规范
|
|
4098
|
+
*/
|
|
4099
|
+
SubtitleCallbackTimeout?: number;
|
|
4064
4100
|
}
|
|
4065
4101
|
/**
|
|
4066
4102
|
* ResetCloudStorageEvent返回参数结构体
|
|
@@ -9074,6 +9110,18 @@ export interface CreateTWeTalkAIBotRequest {
|
|
|
9074
9110
|
* 自定义工具配置,最多可创建10个
|
|
9075
9111
|
*/
|
|
9076
9112
|
CustomTools?: string;
|
|
9113
|
+
/**
|
|
9114
|
+
* WebHook工具配置(JSON字符串格式)
|
|
9115
|
+
*/
|
|
9116
|
+
WebhookTools?: string;
|
|
9117
|
+
/**
|
|
9118
|
+
* 智能体模板类型
|
|
9119
|
+
*/
|
|
9120
|
+
BotType?: string;
|
|
9121
|
+
/**
|
|
9122
|
+
* 知识库相关配置(JSON字符串格式)
|
|
9123
|
+
*/
|
|
9124
|
+
RAGConfig?: string;
|
|
9077
9125
|
}
|
|
9078
9126
|
/**
|
|
9079
9127
|
* 授权小程序信息
|