feat: UI component rendering in agent dialog mode (#1083)

Co-authored-by: csunny <cfqsunny@163.com>
This commit is contained in:
Hzh_97
2024-01-18 11:08:02 +08:00
committed by GitHub
parent 674104eb7c
commit 0936856c3a
46 changed files with 1597 additions and 73 deletions

View File

@@ -36,7 +36,15 @@ export type IChatDialogueSchema = {
conv_uid: string;
user_input: string;
user_name: string;
chat_mode: 'chat_with_db_execute' | 'chat_excel' | 'chat_with_db_qa' | 'chat_knowledge' | 'chat_dashboard' | 'chat_execution' | 'chat_agent';
chat_mode:
| 'chat_with_db_execute'
| 'chat_excel'
| 'chat_with_db_qa'
| 'chat_knowledge'
| 'chat_dashboard'
| 'chat_execution'
| 'chat_agent'
| (string & {});
select_param: string;
};