provider.py 161 B

1234567891011
  1. from enum import Enum
  2. class ProviderQuotaUnit(Enum):
  3. TIMES = 'times'
  4. TOKENS = 'tokens'
  5. class ModelFeature(Enum):
  6. AGENT_THOUGHT = 'agent_thought'