CopilotAccount.py 397 B

123456789101112131415
  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
  11. model_aliases = {
  12. "dall-e-3": default_model
  13. }