windmill-client 1.715.0 → 1.717.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.
- package/dist/core/OpenAPI.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/types.gen.d.ts +2 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -1361,6 +1361,7 @@ export type AIConfig = {
|
|
|
1361
1361
|
[key: string]: AIProviderConfig;
|
|
1362
1362
|
};
|
|
1363
1363
|
default_model?: AIProviderModel;
|
|
1364
|
+
metadata_model?: AIProviderModel;
|
|
1364
1365
|
code_completion_model?: AIProviderModel;
|
|
1365
1366
|
custom_prompts?: {
|
|
1366
1367
|
[key: string]: (string);
|
|
@@ -1376,6 +1377,7 @@ export type InstanceAIProviderSummary = {
|
|
|
1376
1377
|
export type InstanceAISummary = {
|
|
1377
1378
|
providers: Array<InstanceAIProviderSummary>;
|
|
1378
1379
|
default_model?: AIProviderModel;
|
|
1380
|
+
metadata_model?: AIProviderModel;
|
|
1379
1381
|
code_completion_model?: AIProviderModel;
|
|
1380
1382
|
};
|
|
1381
1383
|
export type Alert = {
|