Fix missing cookies in Copilot

This commit is contained in:
hlohaus 2025-07-12 09:08:00 +02:00
parent dc98d0cb37
commit c50f2f47ff
2 changed files with 1 additions and 3 deletions

View file

@ -57,7 +57,7 @@ class Copilot(AsyncAuthedProvider, ProviderModelMixin):
conversation_url = f"{url}/c/api/conversations"
_access_token: str = None
_cookies: dict = None
_cookies: dict = {}
@classmethod
async def on_auth_async(cls, **kwargs) -> AsyncIterator: