@daocloud-proto/baize 0.129.2 → 0.130.0
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.
|
@@ -95,6 +95,7 @@ export type GPUSetting = {
|
|
|
95
95
|
resource?: GPUResourceSetting[]
|
|
96
96
|
resourceTemplate?: GPUResourceSetting
|
|
97
97
|
isDynamic?: boolean
|
|
98
|
+
provider?: string
|
|
98
99
|
}
|
|
99
100
|
|
|
100
101
|
export type GPUResourceSetting = {
|
|
@@ -104,6 +105,14 @@ export type GPUResourceSetting = {
|
|
|
104
105
|
description?: string
|
|
105
106
|
aliasZh?: string
|
|
106
107
|
range?: ResourceRange
|
|
108
|
+
available?: AvailableResource
|
|
109
|
+
type?: string
|
|
110
|
+
descriptionZh?: string
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export type AvailableResource = {
|
|
114
|
+
available?: string
|
|
115
|
+
errorMessage?: string
|
|
107
116
|
}
|
|
108
117
|
|
|
109
118
|
export type ResourceRange = {
|