From 03e5f10992c5e4de9849f4e68bd4596f87e358c6 Mon Sep 17 00:00:00 2001 From: H Lohaus Date: Tue, 7 May 2024 07:37:23 +0200 Subject: Update BingCreateImages.py --- g4f/Provider/BingCreateImages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'g4f/Provider') diff --git a/g4f/Provider/BingCreateImages.py b/g4f/Provider/BingCreateImages.py index 9e5146cc..79dc5665 100644 --- a/g4f/Provider/BingCreateImages.py +++ b/g4f/Provider/BingCreateImages.py @@ -51,7 +51,7 @@ class BingCreateImages(AsyncGeneratorProvider, ProviderModelMixin): Generator[str, None, None]: The final output as markdown formatted string with images. """ cookies = self.cookies or get_cookies(".bing.com", False) - if "_U" not in cookies: + if cookies is None or "_U" not in cookies: login_url = os.environ.get("G4F_LOGIN_URL") if login_url: yield f"Please login: [Bing]({login_url})\n\n" @@ -72,7 +72,7 @@ class BingCreateImages(AsyncGeneratorProvider, ProviderModelMixin): str: Markdown formatted string with images. """ cookies = self.cookies or get_cookies(".bing.com", False) - if "_U" not in cookies: + if cookies is None or "_U" not in cookies: raise MissingAuthError('Missing "_U" cookie') proxy = self.proxy or os.environ.get("G4F_PROXY") async with create_session(cookies, proxy) as session: -- cgit v1.2.3