blob: 76e51278ea8c4f389d888a4d8e05f23af14e8619 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
from __future__ import annotations
from ..Copilot import Copilot
class CopilotAccount(Copilot):
needs_auth = True
parent = "Copilot"
default_model = "Copilot"
default_vision_model = default_model
|