2026-01-26 06:04:12 +00:00
|
|
|
/**
|
|
|
|
|
* Model provider quota types - shared type definitions for API responses
|
|
|
|
|
* These represent the provider identifiers that support paid/trial quotas
|
|
|
|
|
*/
|
2026-03-23 14:10:33 +00:00
|
|
|
export const ModelProviderQuotaGetPaid = {
|
|
|
|
|
ANTHROPIC: 'langgenius/anthropic/anthropic',
|
|
|
|
|
OPENAI: 'langgenius/openai/openai',
|
|
|
|
|
// AZURE_OPENAI: 'langgenius/azure_openai/azure_openai',
|
|
|
|
|
GEMINI: 'langgenius/gemini/google',
|
|
|
|
|
X: 'langgenius/x/x',
|
|
|
|
|
DEEPSEEK: 'langgenius/deepseek/deepseek',
|
|
|
|
|
TONGYI: 'langgenius/tongyi/tongyi',
|
|
|
|
|
} as const
|
|
|
|
|
export type ModelProviderQuotaGetPaid = typeof ModelProviderQuotaGetPaid[keyof typeof ModelProviderQuotaGetPaid]
|