From c9c1aa121dbfae4e6e09bc725af9493a148a2162 Mon Sep 17 00:00:00 2001 From: Heiner Lohaus Date: Tue, 23 Apr 2024 19:56:52 +0200 Subject: [PATCH] Fix issue with You.com and nodriver Show global model list when unselect provider --- g4f/Provider/needs_auth/Gemini.py | 2 +- g4f/Provider/you/har_file.py | 2 +- g4f/gui/client/index.html | 5 +++-- g4f/gui/client/static/js/chat.v1.js | 2 ++ 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/g4f/Provider/needs_auth/Gemini.py b/g4f/Provider/needs_auth/Gemini.py index 209c2e91..02bb0f5a 100644 --- a/g4f/Provider/needs_auth/Gemini.py +++ b/g4f/Provider/needs_auth/Gemini.py @@ -32,7 +32,7 @@ REQUEST_HEADERS = { 'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36', 'x-same-domain': '1', } -REQUEST_BL_PARAM = "boq_assistant-bard-web-server_20240201.08_p8" +REQUEST_BL_PARAM = "boq_assistant-bard-web-server_20240421.18_p0" REQUEST_URL = "https://gemini.google.com/_/BardChatUi/data/assistant.lamda.BardFrontendService/StreamGenerate" UPLOAD_IMAGE_URL = "https://content-push.googleapis.com/upload/" UPLOAD_IMAGE_HEADERS = { diff --git a/g4f/Provider/you/har_file.py b/g4f/Provider/you/har_file.py index e58e44d6..791db7f1 100644 --- a/g4f/Provider/you/har_file.py +++ b/g4f/Provider/you/har_file.py @@ -101,4 +101,4 @@ async def get_telemetry_ids(proxy: str = None) -> list: return [await get_telemetry_id() for _ in range(1)] finally: - await browser.stop() \ No newline at end of file + await tab.close() \ No newline at end of file diff --git a/g4f/gui/client/index.html b/g4f/gui/client/index.html index cfca51a9..66bcaaab 100644 --- a/g4f/gui/client/index.html +++ b/g4f/gui/client/index.html @@ -147,7 +147,7 @@
- +
@@ -230,9 +230,10 @@ diff --git a/g4f/gui/client/static/js/chat.v1.js b/g4f/gui/client/static/js/chat.v1.js index d5988c26..23605ed4 100644 --- a/g4f/gui/client/static/js/chat.v1.js +++ b/g4f/gui/client/static/js/chat.v1.js @@ -1246,6 +1246,8 @@ async function load_provider_models(providerIndex=null) { } const provider = providerSelect.options[providerIndex].value; if (!provider) { + modelProvider.classList.add("hidden"); + modelSelect.classList.remove("hidden"); return; } const models = await api('models', provider);