tencentcloud-sdk-nodejs-trtc 4.1.25 → 4.1.28
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
|
@@ -1345,14 +1345,12 @@ export interface EmulateMobileParams {
|
|
|
1345
1345
|
* 移动设备类型,
|
|
1346
1346
|
0: 手机
|
|
1347
1347
|
1: 平板
|
|
1348
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1349
1348
|
*/
|
|
1350
1349
|
MobileDeviceType?: number;
|
|
1351
1350
|
/**
|
|
1352
1351
|
* 屏幕方向,
|
|
1353
1352
|
0: 竖屏,
|
|
1354
1353
|
1: 横屏
|
|
1355
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1356
1354
|
*/
|
|
1357
1355
|
ScreenOrientation?: number;
|
|
1358
1356
|
}
|
|
@@ -2973,7 +2971,7 @@ export interface StartAIConversationRequest {
|
|
|
2973
2971
|
STTConfig?: STTConfig;
|
|
2974
2972
|
/**
|
|
2975
2973
|
* LLM配置。需符合openai规范,为JSON字符串,示例如下:
|
|
2976
|
-
<pre> { <br>   "LLMType":
|
|
2974
|
+
<pre> { <br>   "LLMType": "大模型类型", // String 必填,如:"openai" <br>   "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br>   "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br>   "Streaming": true // Boolean 非必填,指定是否使用流式传输<br>  } </pre>
|
|
2977
2975
|
|
|
2978
2976
|
*/
|
|
2979
2977
|
LLMConfig?: string;
|