@breign/client 1.0.69 → 1.0.70
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.
|
@@ -28,8 +28,6 @@ function instanceOfEphemeralInstanceUio(value) {
|
|
|
28
28
|
return false;
|
|
29
29
|
if (!('name' in value) || value['name'] === undefined)
|
|
30
30
|
return false;
|
|
31
|
-
if (!('urlWebsite' in value) || value['urlWebsite'] === undefined)
|
|
32
|
-
return false;
|
|
33
31
|
if (!('token' in value) || value['token'] === undefined)
|
|
34
32
|
return false;
|
|
35
33
|
if (!('active' in value) || value['active'] === undefined)
|
|
@@ -51,7 +49,7 @@ function EphemeralInstanceUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
51
49
|
'id': json['id'],
|
|
52
50
|
'appId': json['appId'],
|
|
53
51
|
'name': json['name'],
|
|
54
|
-
'urlWebsite': json['urlWebsite'],
|
|
52
|
+
'urlWebsite': json['urlWebsite'] == null ? undefined : json['urlWebsite'],
|
|
55
53
|
'token': json['token'],
|
|
56
54
|
'active': json['active'],
|
|
57
55
|
'createdAt': json['createdAt'],
|
|
@@ -20,6 +20,7 @@ export declare const ProviderTypeUio: {
|
|
|
20
20
|
readonly Other: "other";
|
|
21
21
|
readonly Gemini: "gemini";
|
|
22
22
|
readonly Vllm: "vllm";
|
|
23
|
+
readonly VllmResponses: "vllm-responses";
|
|
23
24
|
};
|
|
24
25
|
export type ProviderTypeUio = typeof ProviderTypeUio[keyof typeof ProviderTypeUio];
|
|
25
26
|
export declare function instanceOfProviderTypeUio(value: any): boolean;
|
|
@@ -29,7 +29,8 @@ exports.ProviderTypeUio = {
|
|
|
29
29
|
Mistral: 'mistral',
|
|
30
30
|
Other: 'other',
|
|
31
31
|
Gemini: 'gemini',
|
|
32
|
-
Vllm: 'vllm'
|
|
32
|
+
Vllm: 'vllm',
|
|
33
|
+
VllmResponses: 'vllm-responses'
|
|
33
34
|
};
|
|
34
35
|
function instanceOfProviderTypeUio(value) {
|
|
35
36
|
for (const key in exports.ProviderTypeUio) {
|
package/dist/openapi.json
CHANGED
|
@@ -8208,7 +8208,7 @@
|
|
|
8208
8208
|
"type" : "string"
|
|
8209
8209
|
}
|
|
8210
8210
|
},
|
|
8211
|
-
"required" : [ "active", "active", "appId", "createdAt", "id", "lastActivity", "name", "token", "type"
|
|
8211
|
+
"required" : [ "active", "active", "appId", "createdAt", "id", "lastActivity", "name", "token", "type" ],
|
|
8212
8212
|
"type" : "object"
|
|
8213
8213
|
},
|
|
8214
8214
|
"AppConfiguration" : {
|
|
@@ -9954,7 +9954,7 @@
|
|
|
9954
9954
|
"type" : "object"
|
|
9955
9955
|
},
|
|
9956
9956
|
"ProviderType" : {
|
|
9957
|
-
"enum" : [ "ollama", "openai", "mistral", "other", "gemini", "vllm" ],
|
|
9957
|
+
"enum" : [ "ollama", "openai", "mistral", "other", "gemini", "vllm", "vllm-responses" ],
|
|
9958
9958
|
"type" : "string"
|
|
9959
9959
|
},
|
|
9960
9960
|
"GuardianType" : {
|