mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-20 04:44:46 +08:00
feat: add deep think feature (#311)
* feat: implement backend logic * feat: implement api/config endpoint * rename the symbol * feat: re-implement configuration at client-side * feat: add client-side of deep thinking * fix backend bug * feat: add reasoning block * docs: update readme * fix: translate into English * fix: change icon to lightbulb * feat: ignore more bad cases * feat: adjust thinking layout, and implement auto scrolling * docs: add comments --------- Co-authored-by: Henry Li <henry1943@163.com>
This commit is contained in:
1
web/src/core/config/index.ts
Normal file
1
web/src/core/config/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from "./types";
|
||||
13
web/src/core/config/types.ts
Normal file
13
web/src/core/config/types.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
export interface ModelConfig {
|
||||
basic: string[];
|
||||
reasoning: string[];
|
||||
}
|
||||
|
||||
export interface RagConfig {
|
||||
provider: string;
|
||||
}
|
||||
|
||||
export interface DeerFlowConfig {
|
||||
rag: RagConfig;
|
||||
models: ModelConfig;
|
||||
}
|
||||
Reference in New Issue
Block a user