mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
31 lines
825 B
TypeScript
Generated
31 lines
825 B
TypeScript
Generated
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* Fabro Run API
|
|
* HTTP API for managing Fabro workflow run executions.
|
|
*
|
|
* The version of the OpenAPI document: 0.2.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { RunIntentArgsInputsValue } from './run-intent-args-inputs-value';
|
|
|
|
/**
|
|
* Structured run overrides accepted by workflow-version creation.
|
|
*/
|
|
export interface RunIntentArgs {
|
|
'model'?: string;
|
|
/**
|
|
* LLM provider; this does not select the sandbox environment.
|
|
*/
|
|
'provider'?: string;
|
|
'inputs'?: { [key: string]: RunIntentArgsInputsValue; };
|
|
'labels'?: { [key: string]: string; };
|
|
}
|