feat: 调整项目结构
This commit is contained in:
30
src/model/ChatModel.js
Normal file
30
src/model/ChatModel.js
Normal file
@@ -0,0 +1,30 @@
|
||||
export const MessageRole = {
|
||||
// 智能体消息
|
||||
AI: "AI",
|
||||
// 我发送的消息
|
||||
ME: "ME",
|
||||
// 其他消息
|
||||
OTHER: "OTHER",
|
||||
};
|
||||
|
||||
export const MessageType = {
|
||||
// 文本消息
|
||||
TEXT: "TEXT",
|
||||
// 图片消息
|
||||
IMAGE: "IMAGE",
|
||||
};
|
||||
|
||||
export const CompName = {
|
||||
// 快速预定卡片
|
||||
quickBookingCard: "quickBookingCard",
|
||||
// 服务工单卡片
|
||||
createWorkOrderCard: "createWorkOrderCard",
|
||||
// 意见反馈卡片
|
||||
feedbackCard: "feedbackCard",
|
||||
// 探索发现卡片
|
||||
discoveryCard: "discoveryCard",
|
||||
// 图片和商品卡片
|
||||
pictureAndCommodityCard: "pictureAndCommodityCard",
|
||||
// 输入车牌卡片
|
||||
enterLicensePlateCard: "enterLicensePlateCard",
|
||||
};
|
||||
Reference in New Issue
Block a user