@daocloud-proto/baize 0.114.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.
@@ -17,7 +17,7 @@ export type Pagination = {
17
17
  export type SearchIndex = {
18
18
  searchKey?: string
19
19
  objectPath?: string
20
- customPath?: string
20
+ customPath?: {[key: string]: string}
21
21
  }
22
22
 
23
23
  export type AuthResourceAction = {
@@ -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
- authType?: ServingAuthAuthType
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daocloud-proto/baize",
3
- "version": "v0.114.0",
3
+ "version": "v0.114.1",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"