You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
export enum MenuTypeEnum { |
|
// 会话 |
|
CONVERSATION = 'conversation', |
|
|
|
// 文生图 |
|
TEXT_TO_PICTURE = 'textToPicture', |
|
|
|
// 角色 |
|
ROLE = 'role', |
|
|
|
// 任务 |
|
TASK = 'task', |
|
|
|
// 渠道 |
|
CHANNEL = 'channel', |
|
|
|
// 小程序 |
|
APPLET = 'applet', |
|
|
|
// 我的 |
|
USER = 'user', |
|
}
|
|
|