mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-30 00:53:14 +00:00
feat: add support for thought processing in conversation flow and introduce ReActAgent
This commit is contained in:
@@ -21,6 +21,7 @@ export interface Answer {
|
||||
result: string;
|
||||
conversationId: string | null;
|
||||
title: string | null;
|
||||
thought: string;
|
||||
sources: { title: string; text: string; source: string }[];
|
||||
tool_calls: ToolCallsType[];
|
||||
}
|
||||
@@ -32,6 +33,7 @@ export interface Query {
|
||||
error?: string;
|
||||
conversationId?: string | null;
|
||||
title?: string | null;
|
||||
thought?: string;
|
||||
sources?: { title: string; text: string; source: string }[];
|
||||
tool_calls?: ToolCallsType[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user