tencentcloud-sdk-nodejs-trtc 4.1.98 → 4.1.100

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-trtc",
3
- "version": "4.1.98",
3
+ "version": "4.1.100",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -516,7 +516,7 @@ export interface VoiceCloneRequest {
516
516
  */
517
517
  APIKey: string;
518
518
  /**
519
- * 声音克隆的名字
519
+ * 声音克隆的名称, 只允许使用数字、字母、下划线,不能超过36位
520
520
  */
521
521
  VoiceName: string;
522
522
  /**
@@ -981,6 +981,7 @@ export interface DescribeCallDetailInfoRequest {
981
981
  aCapEnergy:音频采集能量;
982
982
  aPlayEnergy:音频播放能量;
983
983
  rtt:SDK到云端的往返延时;单位: ms
984
+ bigvRecFps: 云端送达帧率;
984
985
  */
985
986
  DataType?: Array<string>;
986
987
  /**
@@ -3543,7 +3544,7 @@ export interface StartAIConversationRequest {
3543
3544
  STTConfig?: STTConfig;
3544
3545
  /**
3545
3546
  * LLM配置。需符合openai规范,为JSON字符串,示例如下:
3546
- <pre> { <br> &emsp; "LLMType": "大模型类型", // String 必填,如:"openai" <br> &emsp; "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br> &emsp; "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br> &emsp; "Streaming": true // Boolean 非必填,指定是否使用流式传输<br> &emsp;} </pre>
3547
+ <pre> { <br> &emsp; "LLMType": "大模型类型", // String 必填,如:"openai" <br> &emsp; "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br> &emsp; "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br> &emsp; "History": 10, // Integer 选填,设置 LLM 的上下文轮次,默认值为0,最大值50<br> &emsp; "HistoryMode": 1, // Integer 选填,1表示LLM上下文中的内容会和播放音频做同步,没有播放的音频对应的文本不会出现在上下文中。0表示不会做同步,默认值为0<br> &emsp; "Streaming": true // Boolean 非必填,指定是否使用流式传输<br> &emsp;} </pre>
3547
3548
 
3548
3549
  */
3549
3550
  LLMConfig?: string;