| 1 | export enum AiLogType { |
| 2 | Chat = 'chat', |
| 3 | Image = 'image', |
| 4 | /** @deprecated Removed feature, kept for DB backward compatibility */ |
| 5 | Card = 'card', |
| 6 | Video = 'video', |
| 7 | Agent = 'agent', |
| 8 | Aideo = 'aideo', |
| 9 | Crawler = 'crawler', |
| 10 | StyleTransfer = 'style-transfer', |
| 11 | VideoEdit = 'video-edit', |
| 12 | DraftGeneration = 'draft-generation', |
| 13 | } |
| 14 | |
| 15 | export enum AiLogStatus { |
| 16 | Generating = 'generating', |
| 17 | Success = 'success', |
| 18 | Failed = 'failed', |
| 19 | } |
| 20 | |
| 21 | export enum AiLogChannel { |
| 22 | NewApi = 'new-api', |
| 23 | /** @deprecated Removed feature, kept for DB backward compatibility */ |
| 24 | Md2Card = 'md2card', |
| 25 | /** @deprecated Removed feature, kept for DB backward compatibility */ |
| 26 | FireflyCard = 'fireflyCard', |
| 27 | /** @deprecated Removed feature, kept for DB backward compatibility */ |
| 28 | Kling = 'kling', |
| 29 | Volcengine = 'volcengine', |
| 30 | Dashscope = 'dashscope', |
| 31 | /** @deprecated Removed feature, kept for DB backward compatibility */ |
| 32 | Sora2 = 'sora2', |
| 33 | OpenAI = 'openai', |
| 34 | DeepSeek = 'deepseek', |
| 35 | ClaudeAgent = 'claude-agent', |
| 36 | Crawler = 'crawler', |
| 37 | StyleTransfer = 'style-transfer', |
| 38 | Anthropic = 'anthropic', |
| 39 | Gemini = 'gemini', |
| 40 | Grok = 'grok', |
| 41 | Relay = 'relay', |
| 42 | } |
| 43 |