@smartspace/api-client 0.1.0-pr.724.ee94c3f → 0.1.0-pr.726.64b676e
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.
|
@@ -5,9 +5,11 @@
|
|
|
5
5
|
* OpenAPI spec version: v1
|
|
6
6
|
*/
|
|
7
7
|
import type { CreateModelDeployment } from './createModelDeployment';
|
|
8
|
+
import type { EnumsModelPublisher } from './enumsModelPublisher';
|
|
8
9
|
export interface CreateModel {
|
|
9
10
|
deployment?: CreateModelDeployment;
|
|
10
11
|
/** @nullable */
|
|
11
12
|
displayName?: string | null;
|
|
12
13
|
name: string;
|
|
14
|
+
publisher?: EnumsModelPublisher;
|
|
13
15
|
}
|
|
@@ -1993,6 +1993,21 @@ export declare const modelsCreateModelBody: zod.ZodObject<{
|
|
|
1993
1993
|
}, zod.core.$strict>>;
|
|
1994
1994
|
displayName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1995
1995
|
name: zod.ZodString;
|
|
1996
|
+
publisher: zod.ZodOptional<zod.ZodEnum<{
|
|
1997
|
+
OpenAi: "OpenAi";
|
|
1998
|
+
HuggingFace: "HuggingFace";
|
|
1999
|
+
Cohere: "Cohere";
|
|
2000
|
+
Anthropic: "Anthropic";
|
|
2001
|
+
Google: "Google";
|
|
2002
|
+
Meta: "Meta";
|
|
2003
|
+
Mistral: "Mistral";
|
|
2004
|
+
Microsoft: "Microsoft";
|
|
2005
|
+
DeepSeek: "DeepSeek";
|
|
2006
|
+
XAi: "XAi";
|
|
2007
|
+
Amazon: "Amazon";
|
|
2008
|
+
Qwen: "Qwen";
|
|
2009
|
+
Other: "Other";
|
|
2010
|
+
}>>;
|
|
1996
2011
|
}, zod.core.$strict>;
|
|
1997
2012
|
/**
|
|
1998
2013
|
* @summary Deletes a model with the specified ID.
|
|
@@ -2132,6 +2147,21 @@ export declare const modelsUpsertModelBody: zod.ZodObject<{
|
|
|
2132
2147
|
}, zod.core.$strict>>;
|
|
2133
2148
|
displayName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2134
2149
|
name: zod.ZodString;
|
|
2150
|
+
publisher: zod.ZodOptional<zod.ZodEnum<{
|
|
2151
|
+
OpenAi: "OpenAi";
|
|
2152
|
+
HuggingFace: "HuggingFace";
|
|
2153
|
+
Cohere: "Cohere";
|
|
2154
|
+
Anthropic: "Anthropic";
|
|
2155
|
+
Google: "Google";
|
|
2156
|
+
Meta: "Meta";
|
|
2157
|
+
Mistral: "Mistral";
|
|
2158
|
+
Microsoft: "Microsoft";
|
|
2159
|
+
DeepSeek: "DeepSeek";
|
|
2160
|
+
XAi: "XAi";
|
|
2161
|
+
Amazon: "Amazon";
|
|
2162
|
+
Qwen: "Qwen";
|
|
2163
|
+
Other: "Other";
|
|
2164
|
+
}>>;
|
|
2135
2165
|
}, zod.core.$strict>;
|
|
2136
2166
|
/**
|
|
2137
2167
|
* @summary Retrieves the Docker logs for a specific deployment of a model.
|
|
@@ -1593,7 +1593,8 @@ exports.modelsCreateModelBody = zod_1.default.strictObject({
|
|
|
1593
1593
|
"vmSize": zod_1.default.string().nullish()
|
|
1594
1594
|
}).optional(),
|
|
1595
1595
|
"displayName": zod_1.default.string().nullish(),
|
|
1596
|
-
"name": zod_1.default.string()
|
|
1596
|
+
"name": zod_1.default.string(),
|
|
1597
|
+
"publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
|
|
1597
1598
|
});
|
|
1598
1599
|
/**
|
|
1599
1600
|
* @summary Deletes a model with the specified ID.
|
|
@@ -1681,7 +1682,8 @@ exports.modelsUpsertModelBody = zod_1.default.strictObject({
|
|
|
1681
1682
|
"vmSize": zod_1.default.string().nullish()
|
|
1682
1683
|
}).optional(),
|
|
1683
1684
|
"displayName": zod_1.default.string().nullish(),
|
|
1684
|
-
"name": zod_1.default.string()
|
|
1685
|
+
"name": zod_1.default.string(),
|
|
1686
|
+
"publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
|
|
1685
1687
|
});
|
|
1686
1688
|
/**
|
|
1687
1689
|
* @summary Retrieves the Docker logs for a specific deployment of a model.
|