| | |
| | | import NormalTextCom from '../chatComponents/normalTextCom/NormalTextCom.vue'; |
| | | import knowledgeCom from '../chatComponents/knowledgeCom/KnowledgeCom.vue'; |
| | | import SummaryCom from '../chatComponents/summaryCom/SummaryCom.vue'; |
| | | import ReportCom from '../chatComponents/reportCom/ReportCom.vue'; |
| | | |
| | | import assistantPic from '/static/images/role/assistant-200x192.png'; |
| | | import userPic from '/static/images/role/user-200x206.png'; |
| | |
| | | Summary = 'summary', |
| | | Url = 'url', |
| | | Map = 'map', |
| | | // Report = 'report', |
| | | Report = 'report_list', |
| | | } |
| | | |
| | | export const answerTypeMapCom = { |
| | |
| | | [AnswerType.RecordSet]: RecordSetCom, |
| | | [AnswerType.Text]: NormalTextCom, |
| | | [AnswerType.Summary]: SummaryCom, |
| | | // [AnswerType.Report]: ReportCom, |
| | | }; |
| | | |
| | | export const enum RoleEnum { |
| | |
| | | Result = 'result', |
| | | } |
| | | type SubStep = { |
| | | data:any; |
| | | data: any; |
| | | type: MultiChatType; |
| | | }; |
| | | |