Files
2026-07-13 15:23:29 +08:00

15 lines
321 B
TypeScript

/**
* AI Feature
*/
export type AiFeature = 'default';
/**
* AI lab
*/
export type AiLab = 'anthropic'| 'azure'| 'bedrock'| 'cohere'| 'deepseek'| 'eleven'| 'gemini'| 'groq'| 'jina'| 'mistral'| 'ollama'| 'openai'| 'openrouter'| 'voyageai'| 'xai';
/**
* Ai List
*/
export type AiList = Record<AiFeature, string[]>;