floomai
Version:
Floom orchestrates & executes Generative AI pipelines, Empowering Developers and DevOps to focus on what matters.
10 lines (9 loc) • 413 B
TypeScript
import { DataTransferType } from './DataTransferType';
export declare class FloomRequest {
pipelineId: string;
prompt: string;
chatId: string | null;
variables: Record<string, string> | null;
dataTransfer: DataTransferType | null;
constructor(pipelineId: string, prompt: string, chatId?: string | null, variables?: Record<string, string> | null, dataTransfer?: DataTransferType | null);
}