@daocloud-proto/hydra 0.11.0-dev-32 → 0.11.0-dev-34
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.
|
@@ -24,14 +24,6 @@ export enum PaymentMethod {
|
|
|
24
24
|
PAY_AS_YOU_GO = "PAY_AS_YOU_GO",
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
export enum InferenceRuntime {
|
|
28
|
-
INFERENCE_RUNTIME_UNSPECIFIED = "INFERENCE_RUNTIME_UNSPECIFIED",
|
|
29
|
-
VLLM = "VLLM",
|
|
30
|
-
SGLANG = "SGLANG",
|
|
31
|
-
IMAGE_GEN = "IMAGE_GEN",
|
|
32
|
-
CUSTOM = "CUSTOM",
|
|
33
|
-
}
|
|
34
|
-
|
|
35
27
|
export enum ModelServingStatus {
|
|
36
28
|
STATUS_UNSPECIFIED = "STATUS_UNSPECIFIED",
|
|
37
29
|
DEPLOYING = "DEPLOYING",
|
|
@@ -86,7 +78,7 @@ export type EnvVar = {
|
|
|
86
78
|
}
|
|
87
79
|
|
|
88
80
|
export type RuntimeConfig = {
|
|
89
|
-
runtimeType?:
|
|
81
|
+
runtimeType?: string
|
|
90
82
|
runtimeImage?: string
|
|
91
83
|
versionRequired?: string
|
|
92
84
|
imagePullSecretName?: string[]
|