front end update:

- chat support markdown
- stop button for chat
- configurable for deepagent
This commit is contained in:
2026-03-07 14:50:01 +08:00
parent 3932d695bf
commit ac99dfd56b
4 changed files with 150 additions and 16 deletions

View File

@@ -55,6 +55,7 @@ export type PipelineCreateRequest = {
api_key?: string;
llm_name: string;
enabled?: boolean;
graph_params?: Record<string, unknown>;
};
export type PipelineSpec = {
@@ -63,7 +64,6 @@ export type PipelineSpec = {
enabled: boolean;
config_file: string;
llm_name: string;
overrides: Record<string, unknown>;
};
export type PipelineCreateResponse = {