@daocloud-proto/baize 0.113.0 → 0.114.1
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/common/common.pb.ts
CHANGED
package/common/k8s.pb.ts
CHANGED
|
@@ -83,6 +83,7 @@ export type Queue = {
|
|
|
83
83
|
workspaceAlias?: string
|
|
84
84
|
preemptionWithinClusterQueue?: QueuePreemptionWithinClusterQueuePolicy
|
|
85
85
|
flavors?: FlavorQuota[]
|
|
86
|
+
tasEnabled?: boolean
|
|
86
87
|
}
|
|
87
88
|
|
|
88
89
|
export type ListQueueRequest = {
|
|
@@ -201,6 +202,7 @@ export type ListQueueWorkloadResponse = {
|
|
|
201
202
|
|
|
202
203
|
export type ResourceFlavor = {
|
|
203
204
|
name?: string
|
|
205
|
+
topologyName?: string
|
|
204
206
|
}
|
|
205
207
|
|
|
206
208
|
export type ListKueueResourceFlavorsRequest = {
|
|
@@ -55,6 +55,7 @@ export enum InferenceServingStatusPhase {
|
|
|
55
55
|
export enum ServingAuthAuthType {
|
|
56
56
|
AUTH_TYPE_UNSPECIFIED = "AUTH_TYPE_UNSPECIFIED",
|
|
57
57
|
TRITON_RESTRICTED_KEY = "TRITON_RESTRICTED_KEY",
|
|
58
|
+
VLLM_API_KEY = "VLLM_API_KEY",
|
|
58
59
|
}
|
|
59
60
|
|
|
60
61
|
export type FrameworkTriton = {
|
|
@@ -141,7 +142,7 @@ export type InferenceServing = {
|
|
|
141
142
|
podConfig?: BaizeCommonK8s.PodConfig
|
|
142
143
|
status?: InferenceServingStatus
|
|
143
144
|
lastUpdated?: GoogleProtobufTimestamp.Timestamp
|
|
144
|
-
|
|
145
|
+
auth?: ServingAuth
|
|
145
146
|
creationTimestamp?: GoogleProtobufTimestamp.Timestamp
|
|
146
147
|
hpaConfig?: HPAConfig
|
|
147
148
|
}
|
|
@@ -169,7 +170,7 @@ export type ServingAuthTritonRestrictedKeyValue = {
|
|
|
169
170
|
}
|
|
170
171
|
|
|
171
172
|
export type ServingAuth = BaseServingAuth
|
|
172
|
-
& OneOf<{ tritonRestrictedKeyValue: ServingAuthTritonRestrictedKeyValue }>
|
|
173
|
+
& OneOf<{ tritonRestrictedKeyValue: ServingAuthTritonRestrictedKeyValue; vllmApiKey: string }>
|
|
173
174
|
|
|
174
175
|
export type HPAConfig = {
|
|
175
176
|
enabled?: boolean
|