Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.27
0.2.28
48 changes: 48 additions & 0 deletions lib/services/uai_modelverse/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,10 @@ export interface CreateUMInferAPIKeyRequest {
* ip白名单,换行分割的多组ip。支持IPv4和网段,输入后回车生效,最多100个, 示例:192.168.1.1192.168.1.10-192.168.1.100192.168.1.10/24
*/
IPWhitelist?: string;
/**
* 是否开启推理日志
*/
InferenceLogEnabled?: number;
}
/**
* CreateUMInferAPIKey - 创建apikey
Expand All @@ -185,6 +189,10 @@ export interface CreateUMInferAPIKeyResponse {
* ip白名单,换行分割的多组ip。支持IPv4和网段,输入后回车生效,最多100个, 示例:  192.168.1.1 192.168.1.10-192.168.1.100 192.168.1.10/24
*/
IPWhitelist: string;
/**
* 是否开启推理日志
*/
InferenceLogEnabled: number;
/**
* 资源ID
*/
Expand Down Expand Up @@ -770,6 +778,18 @@ export interface GetUFSquareModelDetailResponse {
* 模型
*/
SquareModel: {
/**
* 关联的 batch 模型广场id
*/
BatchSquareModelId: string;
/**
* 是否关联有可用 batch 模型
*/
IsHasBatch?: boolean;
/**
* 关联的 batch 模型名称
*/
BatchName?: string;
/**
* 制造商
*/
Expand Down Expand Up @@ -1517,6 +1537,14 @@ export interface ListUFSquareModelRequest {
* 语言,数组类型,可选值 ["chinese", "english"]
*/
Language?: string[];
/**
* 制造商,可选值来源于ListUFSquareModelFilters枚举接口。可多选
*/
Manufacturer?: string[];
/**
* 模型特性,可选值来源于ListUFSquareModelFilters枚举接口。可多选
*/
Capabilities?: string[];
}
/**
* ListUFSquareModel - 查询模型广场数据
Expand All @@ -1530,6 +1558,18 @@ export interface ListUFSquareModelResponse {
* 广场模型
*/
SquareModels: {
/**
* 关联的 batch 模型广场id
*/
BatchSquareModelId: string;
/**
* 是否关联有可用 batch 模型
*/
IsHasBatch?: boolean;
/**
* 关联的 batch 模型名称
*/
BatchName?: string;
/**
* 制造商
*/
Expand Down Expand Up @@ -1714,6 +1754,10 @@ export interface ListUMInferAPIKeyResponse {
* ip白名单,换行分割的多组ip。支持IPv4和网段,输入后回车生效,最多100个, 示例:  192.168.1.1 192.168.1.10-192.168.1.100 192.168.1.10/24
*/
IPWhitelist: string;
/**
* 是否开启推理日志
*/
InferenceLogEnabled: number;
/**
* 资源ID
*/
Expand Down Expand Up @@ -2362,6 +2406,10 @@ export interface UpdateUMInferAPIKeyRequest {
* ip白名单,换行分割的多组ip。支持IPv4和网段,输入后回车生效,最多100个, 示例:  192.168.1.1 192.168.1.10-192.168.1.100 192.168.1.10/24
*/
IPWhitelist?: string;
/**
* 是否开启推理日志
*/
InferenceLogEnabled?: number;
}
/**
* UpdateUMInferAPIKey - 更新apikey
Expand Down
Loading