tencentcloud-sdk-nodejs-tione 4.1.46 → 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
|
@@ -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
|
}
|
|
@@ -831,6 +831,11 @@ export interface Service {
|
|
|
831
831
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
832
832
|
*/
|
|
833
833
|
InstancePerReplicas?: string;
|
|
834
|
+
/**
|
|
835
|
+
* 用于监控查询的Source
|
|
836
|
+
枚举值,部分情况下与CreateSource不同,通过该字段兼容
|
|
837
|
+
*/
|
|
838
|
+
MonitorSource?: string;
|
|
834
839
|
}
|
|
835
840
|
/**
|
|
836
841
|
* 跨租户弹性网卡下Pod调用信息
|
|
@@ -4709,6 +4714,10 @@ export interface ServiceGroup {
|
|
|
4709
4714
|
* 用于监控的创建来源字段
|
|
4710
4715
|
*/
|
|
4711
4716
|
MonitorSource?: string;
|
|
4717
|
+
/**
|
|
4718
|
+
* 子用户的 nickname
|
|
4719
|
+
*/
|
|
4720
|
+
SubUinName?: string;
|
|
4712
4721
|
}
|
|
4713
4722
|
/**
|
|
4714
4723
|
* 服务的限流限速等配置
|
|
@@ -5917,6 +5926,14 @@ export interface Pod {
|
|
|
5917
5926
|
* 实例的状态信息
|
|
5918
5927
|
*/
|
|
5919
5928
|
Status?: string;
|
|
5929
|
+
/**
|
|
5930
|
+
* 实例的开始调度时间
|
|
5931
|
+
*/
|
|
5932
|
+
StartScheduleTime?: string;
|
|
5933
|
+
/**
|
|
5934
|
+
* 实例状态的补充信息
|
|
5935
|
+
*/
|
|
5936
|
+
Message?: string;
|
|
5920
5937
|
}
|
|
5921
5938
|
/**
|
|
5922
5939
|
* DescribeEvents请求参数结构体
|