mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-08-24 02:57:13 +00:00
24 lines
514 B
TypeScript
24 lines
514 B
TypeScript
import { I18nObject } from '@/app/infra/entities/common';
|
|
import { IDynamicFormItemSchema } from '@/app/infra/entities/form/dynamic';
|
|
|
|
export interface PipelineFormEntity {
|
|
basic: object;
|
|
ai: object;
|
|
trigger: object;
|
|
safety: object;
|
|
output: object;
|
|
}
|
|
|
|
export interface PipelineConfigTab {
|
|
name: string;
|
|
label: I18nObject;
|
|
stages: PipelineConfigStage[];
|
|
}
|
|
|
|
export interface PipelineConfigStage {
|
|
name: string;
|
|
label: I18nObject;
|
|
description?: I18nObject;
|
|
config: IDynamicFormItemSchema[];
|
|
}
|