tencentcloud-sdk-nodejs-lke 4.1.4 → 4.1.9
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
CHANGED
|
@@ -44,11 +44,19 @@ npm install tencentcloud-sdk-nodejs-vpc --save
|
|
|
44
44
|
|
|
45
45
|
### 安装全产品 SDK
|
|
46
46
|
|
|
47
|
+
如果项目依赖的云产品较多,可以引入全产品 SDK。
|
|
48
|
+
|
|
47
49
|
```
|
|
48
50
|
npm install tencentcloud-sdk-nodejs --save
|
|
49
51
|
```
|
|
50
52
|
|
|
51
|
-
全产品 SDK
|
|
53
|
+
全产品 SDK 包含所有云产品调用代码和 TypeScript 类型文件,体积偏大。对于体积敏感的场景,推荐安装指定产品 SDK。
|
|
54
|
+
|
|
55
|
+
如果既希望全产品调用,又对包体积比较敏感,可以使用 Slim 版本 SDK。Slim SDK 移除类型文件,并进行了代码压缩,适合体积敏感场景使用:
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
npm install tencentcloud-sdk-slim-nodejs --save
|
|
59
|
+
```
|
|
52
60
|
|
|
53
61
|
## 通过源码包安装
|
|
54
62
|
|
package/package.json
CHANGED
|
@@ -5215,7 +5215,7 @@ export interface ModelInfo {
|
|
|
5215
5215
|
*/
|
|
5216
5216
|
MaxTokens?: ModelParameter;
|
|
5217
5217
|
/**
|
|
5218
|
-
* 模型来源 Hunyuan:腾讯混元大模型,Industry:腾讯云行业大模型,Experience
|
|
5218
|
+
* 模型来源 Hunyuan:腾讯混元大模型,Industry:腾讯云行业大模型,Experience:新模型体验,Custom自定义模型
|
|
5219
5219
|
*/
|
|
5220
5220
|
Source?: string;
|
|
5221
5221
|
/**
|
|
@@ -5226,6 +5226,20 @@ export interface ModelInfo {
|
|
|
5226
5226
|
* 是否免费
|
|
5227
5227
|
*/
|
|
5228
5228
|
IsFree?: boolean;
|
|
5229
|
+
/**
|
|
5230
|
+
* 模型对话框可输入的上限
|
|
5231
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5232
|
+
*/
|
|
5233
|
+
InputLenLimit?: number;
|
|
5234
|
+
/**
|
|
5235
|
+
* 支持工作流的类型 0:模型不支持; 1: 模型支持工作流; 2: 模型支持效果不佳;
|
|
5236
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5237
|
+
*/
|
|
5238
|
+
SupportWorkflowStatus?: number;
|
|
5239
|
+
/**
|
|
5240
|
+
* 模型类别 generate:生成模型,thought:思考模型
|
|
5241
|
+
*/
|
|
5242
|
+
ModelCategory?: string;
|
|
5229
5243
|
}
|
|
5230
5244
|
/**
|
|
5231
5245
|
* DeleteRejectedQuestion请求参数结构体
|