| | |
| | | import type { Attach } from '../components/playBar/hook/useAttach'; |
| | | import assistantPic from '/static/images/role/assistant-200x192.png'; |
| | | import userPic from '/static/images/role/user-200x206.png'; |
| | | import ContentCb from '../chatComponents/contentCbCom/index.vue'; |
| | | import InputSelect from '../chatComponents/contentCbCom/InputSelect.vue'; |
| | | import TimeRange from '../chatComponents/contentCbCom/TimeRange.vue'; |
| | | |
| | | export const enum AnswerType { |
| | | Knowledge = 'knowledge', |
| | | RecordSet = 'recordset', |
| | |
| | | Map = 'map', |
| | | Report = 'report_list', |
| | | Script = 'script', |
| | | ContentCb = 'content_cb', |
| | | |
| | | } |
| | | |
| | | export const answerTypeMapCom = { |
| | |
| | | [AnswerType.Text]: NormalTextCom, |
| | | [AnswerType.Summary]: SummaryCom, |
| | | [AnswerType.Script]: ScriptMode, |
| | | [AnswerType.ContentCb]: ContentCb, |
| | | |
| | | }; |
| | | |
| | | export const enum RoleEnum { |