tencentcloud-sdk-nodejs-tione 4.1.47 → 4.1.48

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-tione",
3
- "version": "4.1.47",
3
+ "version": "4.1.48",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -75,8 +75,11 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
75
75
  */
76
76
  DescribeModelAccelerateTask(req: DescribeModelAccelerateTaskRequest, cb?: (error: string, rep: DescribeModelAccelerateTaskResponse) => void): Promise<DescribeModelAccelerateTaskResponse>;
77
77
  /**
78
- * 该接口支持与自行部署的大模型的聊天。
79
- */
78
+ * 该接口支持与自行部署的大模型的聊天。
79
+
80
+ 使用该接口调用时需要携带腾讯云的密钥信息用于身份信息鉴权,建议通过腾讯云的云 API SDK调用,具体可以参考
81
+ https://cloud.tencent.com/document/product/1278/85305
82
+ */
80
83
  ChatCompletion(req: ChatCompletionRequest, cb?: (error: string, rep: ChatCompletionResponse) => void): Promise<ChatCompletionResponse>;
81
84
  /**
82
85
  * 修改Notebook标签
@@ -131,8 +131,11 @@ class Client extends TencentCloudCommon.AbstractClient {
131
131
  return this.request("DescribeModelAccelerateTask", req, cb);
132
132
  }
133
133
  /**
134
- * 该接口支持与自行部署的大模型的聊天。
135
- */
134
+ * 该接口支持与自行部署的大模型的聊天。
135
+
136
+ 使用该接口调用时需要携带腾讯云的密钥信息用于身份信息鉴权,建议通过腾讯云的云 API SDK调用,具体可以参考
137
+ https://cloud.tencent.com/document/product/1278/85305
138
+ */
136
139
  async ChatCompletion(req, cb) {
137
140
  return this.request("ChatCompletion", req, cb);
138
141
  }