tencentcloud-sdk-nodejs-tione 4.0.871 → 4.0.990
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 +3 -2
- package/products.md +178 -167
- package/src/services/tione/v20211111/tione_client.ts +31 -15
- package/src/services/tione/v20211111/tione_models.ts +461 -199
- package/tencentcloud/services/tione/v20211111/tione_client.d.ts +9 -5
- package/tencentcloud/services/tione/v20211111/tione_client.js +12 -6
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +453 -197
|
@@ -30,16 +30,17 @@ import {
|
|
|
30
30
|
DeleteNotebookRequest,
|
|
31
31
|
RDMAConfig,
|
|
32
32
|
DescribeTrainingModelVersionsRequest,
|
|
33
|
+
SpecUnit,
|
|
33
34
|
CreateDatasetResponse,
|
|
34
35
|
CrossTenantENIInfo,
|
|
35
36
|
HyperParameter,
|
|
36
37
|
DescribeTrainingTasksRequest,
|
|
37
38
|
VolumeMount,
|
|
38
|
-
SendChatMessageResponse,
|
|
39
39
|
DescribeBillingResourceGroupResponse,
|
|
40
40
|
ServiceCallInfo,
|
|
41
41
|
CosPathInfo,
|
|
42
42
|
DescribeBillingResourceGroupsResponse,
|
|
43
|
+
SpecPrice,
|
|
43
44
|
StartNotebookResponse,
|
|
44
45
|
CFSTurbo,
|
|
45
46
|
DescribeTrainingModelVersionRequest,
|
|
@@ -63,15 +64,16 @@ import {
|
|
|
63
64
|
CreateTrainingModelRequest,
|
|
64
65
|
SchemaInfo,
|
|
65
66
|
StartCmdInfo,
|
|
67
|
+
DescribeModelServiceGroupsResponse,
|
|
66
68
|
DescribeBillingResourceInstanceRunningJobsResponse,
|
|
67
69
|
InferGatewayCallInfo,
|
|
68
70
|
CreateNotebookRequest,
|
|
69
71
|
CreatePresignedNotebookUrlResponse,
|
|
70
72
|
HorizontalPodAutoscaler,
|
|
71
73
|
ResourceConfigInfo,
|
|
74
|
+
Spec,
|
|
72
75
|
GooseFS,
|
|
73
76
|
Option,
|
|
74
|
-
ImageSecret,
|
|
75
77
|
DefaultInnerCallInfo,
|
|
76
78
|
Choice,
|
|
77
79
|
ResourceGroup,
|
|
@@ -80,7 +82,7 @@ import {
|
|
|
80
82
|
ModelAccelerateVersion,
|
|
81
83
|
DeleteTrainingModelResponse,
|
|
82
84
|
DescribeInferTemplatesResponse,
|
|
83
|
-
|
|
85
|
+
DescribeBillingSpecsRequest,
|
|
84
86
|
InferCodeInfo,
|
|
85
87
|
DescribeInferTemplatesRequest,
|
|
86
88
|
PrivateLinkInfo,
|
|
@@ -104,11 +106,13 @@ import {
|
|
|
104
106
|
DescribeModelServiceHotUpdatedResponse,
|
|
105
107
|
DescribeBuildInImagesResponse,
|
|
106
108
|
DescribeDatasetsResponse,
|
|
109
|
+
ImageUrl,
|
|
107
110
|
ModelSource,
|
|
108
111
|
CreateNotebookResponse,
|
|
109
112
|
IntranetCallInfo,
|
|
113
|
+
DescribeBillingSpecsPriceRequest,
|
|
110
114
|
Instance,
|
|
111
|
-
|
|
115
|
+
DescribeBillingSpecsResponse,
|
|
112
116
|
DescribeNotebooksResponse,
|
|
113
117
|
DatasetGroup,
|
|
114
118
|
StatefulSetCondition,
|
|
@@ -133,7 +137,7 @@ import {
|
|
|
133
137
|
CreateTrainingModelResponse,
|
|
134
138
|
StopModelAccelerateTaskResponse,
|
|
135
139
|
IngressPrivateLinkInfo,
|
|
136
|
-
|
|
140
|
+
ServiceEIPInfo,
|
|
137
141
|
DescribeModelAccelerateTaskRequest,
|
|
138
142
|
Container,
|
|
139
143
|
DeleteDatasetResponse,
|
|
@@ -166,6 +170,8 @@ import {
|
|
|
166
170
|
DeleteModelServiceResponse,
|
|
167
171
|
MetricData,
|
|
168
172
|
DeleteTrainingModelVersionRequest,
|
|
173
|
+
DescribeBillingSpecsPriceResponse,
|
|
174
|
+
MultiModalContent,
|
|
169
175
|
DescribeTrainingModelVersionResponse,
|
|
170
176
|
EnvVar,
|
|
171
177
|
LogConfig,
|
|
@@ -201,6 +207,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
201
207
|
return this.request("DescribeModelService", req, cb)
|
|
202
208
|
}
|
|
203
209
|
|
|
210
|
+
/**
|
|
211
|
+
* 本接口(DescribeBillingSpecs) 提供查询计费项列表
|
|
212
|
+
*/
|
|
213
|
+
async DescribeBillingSpecs(
|
|
214
|
+
req: DescribeBillingSpecsRequest,
|
|
215
|
+
cb?: (error: string, rep: DescribeBillingSpecsResponse) => void
|
|
216
|
+
): Promise<DescribeBillingSpecsResponse> {
|
|
217
|
+
return this.request("DescribeBillingSpecs", req, cb)
|
|
218
|
+
}
|
|
219
|
+
|
|
204
220
|
/**
|
|
205
221
|
* 导入模型
|
|
206
222
|
*/
|
|
@@ -211,6 +227,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
211
227
|
return this.request("CreateTrainingModel", req, cb)
|
|
212
228
|
}
|
|
213
229
|
|
|
230
|
+
/**
|
|
231
|
+
* 本接口(DescribeBillingSpecsPrice)用于查询按量计费计费项价格。
|
|
232
|
+
*/
|
|
233
|
+
async DescribeBillingSpecsPrice(
|
|
234
|
+
req: DescribeBillingSpecsPriceRequest,
|
|
235
|
+
cb?: (error: string, rep: DescribeBillingSpecsPriceResponse) => void
|
|
236
|
+
): Promise<DescribeBillingSpecsPriceResponse> {
|
|
237
|
+
return this.request("DescribeBillingSpecsPrice", req, cb)
|
|
238
|
+
}
|
|
239
|
+
|
|
214
240
|
/**
|
|
215
241
|
* 展示服务的调用信息
|
|
216
242
|
*/
|
|
@@ -441,16 +467,6 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
441
467
|
return this.request("DescribeBillingResourceInstanceRunningJobs", req, cb)
|
|
442
468
|
}
|
|
443
469
|
|
|
444
|
-
/**
|
|
445
|
-
* 这是一个供您体验大模型聊天的接口。
|
|
446
|
-
*/
|
|
447
|
-
async SendChatMessage(
|
|
448
|
-
req: SendChatMessageRequest,
|
|
449
|
-
cb?: (error: string, rep: SendChatMessageResponse) => void
|
|
450
|
-
): Promise<SendChatMessageResponse> {
|
|
451
|
-
return this.request("SendChatMessage", req, cb)
|
|
452
|
-
}
|
|
453
|
-
|
|
454
470
|
/**
|
|
455
471
|
* 用于更新模型服务
|
|
456
472
|
*/
|