CopilotAccount.py 335 B

123456789101112
  1. from __future__ import annotations
  2. from ..base_provider import ProviderModelMixin
  3. from ..Copilot import Copilot
  4. class CopilotAccount(Copilot, ProviderModelMixin):
  5. needs_auth = True
  6. parent = "Copilot"
  7. default_model = "Copilot"
  8. default_vision_model = default_model
  9. models = [default_model]
  10. image_models = models