qovery-typescript-axios 1.1.978 → 1.1.979
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/api.ts +12 -0
- package/dist/api.d.ts +12 -0
- package/dist/esm/api.d.ts +12 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -214,6 +214,12 @@ export interface AgenticWorkflowModelRequest {
|
|
|
214
214
|
* @memberof AgenticWorkflowModelRequest
|
|
215
215
|
*/
|
|
216
216
|
'settings'?: string;
|
|
217
|
+
/**
|
|
218
|
+
* An existing LLM provider to take the credential from, instead of `api_key`. The two are mutually exclusive: a request setting both is rejected. The provider must belong to the workflow\'s organization, be one the caller may use, and match `type`.
|
|
219
|
+
* @type {string}
|
|
220
|
+
* @memberof AgenticWorkflowModelRequest
|
|
221
|
+
*/
|
|
222
|
+
'llm_provider_id'?: string | null;
|
|
217
223
|
}
|
|
218
224
|
|
|
219
225
|
|
|
@@ -235,6 +241,12 @@ export interface AgenticWorkflowModelResponse {
|
|
|
235
241
|
* @memberof AgenticWorkflowModelResponse
|
|
236
242
|
*/
|
|
237
243
|
'settings': string;
|
|
244
|
+
/**
|
|
245
|
+
* The LLM provider the workflow takes its credential from, or null when it carries its own `api_key`. Unlike `api_key` this is returned: it names a credential rather than carrying one.
|
|
246
|
+
* @type {string}
|
|
247
|
+
* @memberof AgenticWorkflowModelResponse
|
|
248
|
+
*/
|
|
249
|
+
'llm_provider_id'?: string | null;
|
|
238
250
|
}
|
|
239
251
|
|
|
240
252
|
|
package/dist/api.d.ts
CHANGED
|
@@ -192,6 +192,12 @@ export interface AgenticWorkflowModelRequest {
|
|
|
192
192
|
* @memberof AgenticWorkflowModelRequest
|
|
193
193
|
*/
|
|
194
194
|
'settings'?: string;
|
|
195
|
+
/**
|
|
196
|
+
* An existing LLM provider to take the credential from, instead of `api_key`. The two are mutually exclusive: a request setting both is rejected. The provider must belong to the workflow\'s organization, be one the caller may use, and match `type`.
|
|
197
|
+
* @type {string}
|
|
198
|
+
* @memberof AgenticWorkflowModelRequest
|
|
199
|
+
*/
|
|
200
|
+
'llm_provider_id'?: string | null;
|
|
195
201
|
}
|
|
196
202
|
/**
|
|
197
203
|
*
|
|
@@ -211,6 +217,12 @@ export interface AgenticWorkflowModelResponse {
|
|
|
211
217
|
* @memberof AgenticWorkflowModelResponse
|
|
212
218
|
*/
|
|
213
219
|
'settings': string;
|
|
220
|
+
/**
|
|
221
|
+
* The LLM provider the workflow takes its credential from, or null when it carries its own `api_key`. Unlike `api_key` this is returned: it names a credential rather than carrying one.
|
|
222
|
+
* @type {string}
|
|
223
|
+
* @memberof AgenticWorkflowModelResponse
|
|
224
|
+
*/
|
|
225
|
+
'llm_provider_id'?: string | null;
|
|
214
226
|
}
|
|
215
227
|
/**
|
|
216
228
|
*
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -192,6 +192,12 @@ export interface AgenticWorkflowModelRequest {
|
|
|
192
192
|
* @memberof AgenticWorkflowModelRequest
|
|
193
193
|
*/
|
|
194
194
|
'settings'?: string;
|
|
195
|
+
/**
|
|
196
|
+
* An existing LLM provider to take the credential from, instead of `api_key`. The two are mutually exclusive: a request setting both is rejected. The provider must belong to the workflow\'s organization, be one the caller may use, and match `type`.
|
|
197
|
+
* @type {string}
|
|
198
|
+
* @memberof AgenticWorkflowModelRequest
|
|
199
|
+
*/
|
|
200
|
+
'llm_provider_id'?: string | null;
|
|
195
201
|
}
|
|
196
202
|
/**
|
|
197
203
|
*
|
|
@@ -211,6 +217,12 @@ export interface AgenticWorkflowModelResponse {
|
|
|
211
217
|
* @memberof AgenticWorkflowModelResponse
|
|
212
218
|
*/
|
|
213
219
|
'settings': string;
|
|
220
|
+
/**
|
|
221
|
+
* The LLM provider the workflow takes its credential from, or null when it carries its own `api_key`. Unlike `api_key` this is returned: it names a credential rather than carrying one.
|
|
222
|
+
* @type {string}
|
|
223
|
+
* @memberof AgenticWorkflowModelResponse
|
|
224
|
+
*/
|
|
225
|
+
'llm_provider_id'?: string | null;
|
|
214
226
|
}
|
|
215
227
|
/**
|
|
216
228
|
*
|