fabro/lib/packages/fabro-api-client/src/models/run-intent-args.ts
2026-08-24 11:55:43 -04:00

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; };
}