mirror of
https://github.com/langgenius/dify.git
synced 2025-07-05 16:22:23 +00:00
68 lines
1.5 KiB
Python
68 lines
1.5 KiB
Python
![]() |
from enum import Enum
|
||
|
from typing import Optional
|
||
|
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
from core.model_runtime.entities.model_entities import ModelType
|
||
|
from models.provider import ProviderQuotaType
|
||
|
|
||
|
|
||
|
class QuotaUnit(Enum):
|
||
|
TIMES = 'times'
|
||
|
TOKENS = 'tokens'
|
||
|
|
||
|
|
||
|
class SystemConfigurationStatus(Enum):
|
||
|
"""
|
||
|
Enum class for system configuration status.
|
||
|
"""
|
||
|
ACTIVE = 'active'
|
||
|
QUOTA_EXCEEDED = 'quota-exceeded'
|
||
|
UNSUPPORTED = 'unsupported'
|
||
|
|
||
|
|
||
|
class QuotaConfiguration(BaseModel):
|
||
|
"""
|
||
|
Model class for provider quota configuration.
|
||
|
"""
|
||
|
quota_type: ProviderQuotaType
|
||
|
quota_unit: QuotaUnit
|
||
|
quota_limit: int
|
||
|
quota_used: int
|
||
|
is_valid: bool
|
||
|
restrict_llms: list[str] = []
|
||
|
|
||
|
|
||
|
class SystemConfiguration(BaseModel):
|
||
|
"""
|
||
|
Model class for provider system configuration.
|
||
|
"""
|
||
|
enabled: bool
|
||
|
current_quota_type: Optional[ProviderQuotaType] = None
|
||
|
quota_configurations: list[QuotaConfiguration] = []
|
||
|
credentials: Optional[dict] = None
|
||
|
|
||
|
|
||
|
class CustomProviderConfiguration(BaseModel):
|
||
|
"""
|
||
|
Model class for provider custom configuration.
|
||
|
"""
|
||
|
credentials: dict
|
||
|
|
||
|
|
||
|
class CustomModelConfiguration(BaseModel):
|
||
|
"""
|
||
|
Model class for provider custom model configuration.
|
||
|
"""
|
||
|
model: str
|
||
|
model_type: ModelType
|
||
|
credentials: dict
|
||
|
|
||
|
|
||
|
class CustomConfiguration(BaseModel):
|
||
|
"""
|
||
|
Model class for provider custom configuration.
|
||
|
"""
|
||
|
provider: Optional[CustomProviderConfiguration] = None
|
||
|
models: list[CustomModelConfiguration] = []
|