mirror of
https://github.com/langgenius/dify.git
synced 2026-07-20 19:50:06 -04:00
a84c2d36a3
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
16 lines
615 B
TypeScript
16 lines
615 B
TypeScript
/**
|
|
* Model provider quota types - shared type definitions for API responses
|
|
* These represent the provider identifiers that support paid/trial quotas
|
|
*/
|
|
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]
|