blob: 497aab989f043ac0ea50fe5d5b0e04861f772974 (
plain) (
tree)
|
|
from __future__ import annotations
from ..base_provider import ProviderModelMixin
from ..Copilot import Copilot
class CopilotAccount(Copilot, ProviderModelMixin):
needs_auth = True
parent = "Copilot"
default_model = "Copilot"
default_vision_model = default_model
models = [default_model]
image_models = models
|