tencentcloud-sdk-nodejs-dataagent 4.1.157 → 4.1.167

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-dataagent",
3
- "version": "4.1.157",
3
+ "version": "4.1.167",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -52,6 +52,10 @@ export interface AddChunkRequest {
52
52
  * 新 Chunk 插入到目标 Chunk ​之后的位置。插入位置的上一个 chunkId
53
53
  */
54
54
  AfterChunkId?: string;
55
+ /**
56
+ * 知识库id
57
+ */
58
+ KnowledgeBaseId?: string;
55
59
  }
56
60
  /**
57
61
  * ModifyChunk返回参数结构体
@@ -87,6 +91,10 @@ export interface DeleteChunkRequest {
87
91
  * 切片ID
88
92
  */
89
93
  ChunkIds: Array<string>;
94
+ /**
95
+ * 知识库id
96
+ */
97
+ KnowledgeBaseId?: string;
90
98
  }
91
99
  /**
92
100
  * GetSessionDetails返回参数结构体
@@ -129,6 +137,10 @@ export interface ModifyChunkRequest {
129
137
  * 编辑后的文本
130
138
  */
131
139
  Content?: string;
140
+ /**
141
+ * 知识库id
142
+ */
143
+ KnowledgeBaseId?: string;
132
144
  }
133
145
  /**
134
146
  * QueryChunkList返回参数结构体
@@ -221,6 +233,10 @@ export interface QueryChunkListRequest {
221
233
  * 默认一页展示 10 条
222
234
  */
223
235
  PageSize?: number;
236
+ /**
237
+ * 知识库id
238
+ */
239
+ KnowledgeBaseId?: string;
224
240
  }
225
241
  /**
226
242
  * StopChatAI请求参数结构体
@@ -289,6 +305,14 @@ export interface ModifyKnowledgeBaseRequest {
289
305
  * 知识库描述,create和update时必填
290
306
  */
291
307
  KnowledgeBaseDesc?: string;
308
+ /**
309
+ * 1仅自己使用,2指定用户,0全员
310
+ */
311
+ UseScope?: number;
312
+ /**
313
+ * 可使用用户列表
314
+ */
315
+ AuthorityUins?: Array<string>;
292
316
  }
293
317
  /**
294
318
  * DeleteChunk返回参数结构体