[代码优化]AI: 写作添加注释,增加可读性,调整代码,方便后续调整

This commit is contained in:
hhhero
2024-07-09 00:44:27 +08:00
parent 6224602152
commit 5730707be9
8 changed files with 154 additions and 174 deletions

View File

@ -40,3 +40,11 @@ export const AiMusicStatusEnum = {
SUCCESS: 20, // 已完成
FAIL: 30 // 已失败
}
/**
* AI 写作类型的枚举
*/
export enum AiWriteTypeEnum {
WRITING = 1, // 撰写
REPLY // 回复
}