tencentcloud-sdk-nodejs-tokenhub 4.1.262 → 4.1.263
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
|
@@ -29,7 +29,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
29
29
|
|
|
30
30
|
支持按模型 ID、模型名称、模型能力等条件筛选,支持分页和排序。
|
|
31
31
|
*/
|
|
32
|
-
DescribeModelList(req
|
|
32
|
+
DescribeModelList(req: DescribeModelListRequest, cb?: (error: string, rep: DescribeModelListResponse) => void): Promise<DescribeModelListResponse>;
|
|
33
33
|
/**
|
|
34
34
|
* 查询 TokenPlan APIKey 详情。
|
|
35
35
|
|
|
@@ -405,7 +405,32 @@ export interface ModelImage {
|
|
|
405
405
|
/**
|
|
406
406
|
* DescribeModelList请求参数结构体
|
|
407
407
|
*/
|
|
408
|
-
export
|
|
408
|
+
export interface DescribeModelListRequest {
|
|
409
|
+
/**
|
|
410
|
+
* <p>模型 ID 列表。最多支持 10 个,不支持重复。</p>
|
|
411
|
+
*/
|
|
412
|
+
ModelIds?: Array<string>;
|
|
413
|
+
/**
|
|
414
|
+
* <p>模型名称列表。最多支持 10 个,不支持重复。</p>
|
|
415
|
+
*/
|
|
416
|
+
ModelNames?: Array<string>;
|
|
417
|
+
/**
|
|
418
|
+
* <p>模型类型列表,筛选指定类型的模型。最多支持 10 个,不支持重复。取值:Text(文本)、Vision(视觉)、Multimodal(多模态)、Speech(语音)、Embedding(向量)。</p>
|
|
419
|
+
*/
|
|
420
|
+
ModelTypes?: Array<string>;
|
|
421
|
+
/**
|
|
422
|
+
* <p>模型标签</p>
|
|
423
|
+
*/
|
|
424
|
+
Tags?: Array<string>;
|
|
425
|
+
/**
|
|
426
|
+
* <p>返回数量,默认为 20,最大值为 100。</p>
|
|
427
|
+
*/
|
|
428
|
+
Limit?: number;
|
|
429
|
+
/**
|
|
430
|
+
* <p>偏移量,默认为 0。</p>
|
|
431
|
+
*/
|
|
432
|
+
Offset?: number;
|
|
433
|
+
}
|
|
409
434
|
/**
|
|
410
435
|
* DescribeApiKeyList请求参数结构体
|
|
411
436
|
*/
|