summaryrefslogtreecommitdiffstats
path: root/g4f/gui/webview.py
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-03-19 18:59:42 +0100
committerGitHub <noreply@github.com>2024-03-19 18:59:42 +0100
commit79bc56f36e02a3ccb82c92af58363836ab2affb2 (patch)
tree60b32a4cae7f2921ddbb4e77560ac761164989ca /g4f/gui/webview.py
parent~ | include /local/models dir on pip (diff)
parentFix Bing key error (diff)
downloadgpt4free-79bc56f36e02a3ccb82c92af58363836ab2affb2.tar
gpt4free-79bc56f36e02a3ccb82c92af58363836ab2affb2.tar.gz
gpt4free-79bc56f36e02a3ccb82c92af58363836ab2affb2.tar.bz2
gpt4free-79bc56f36e02a3ccb82c92af58363836ab2affb2.tar.lz
gpt4free-79bc56f36e02a3ccb82c92af58363836ab2affb2.tar.xz
gpt4free-79bc56f36e02a3ccb82c92af58363836ab2affb2.tar.zst
gpt4free-79bc56f36e02a3ccb82c92af58363836ab2affb2.zip
Diffstat (limited to '')
-rw-r--r--g4f/gui/webview.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/g4f/gui/webview.py b/g4f/gui/webview.py
index ba764947..36ad0e60 100644
--- a/g4f/gui/webview.py
+++ b/g4f/gui/webview.py
@@ -1,3 +1,5 @@
+from __future__ import annotations
+
import sys
import os.path
import webview
@@ -20,6 +22,8 @@ def run_webview(
dirname = sys._MEIPASS
else:
dirname = os.path.dirname(__file__)
+ webview.settings['OPEN_EXTERNAL_LINKS_IN_BROWSER'] = False
+ webview.settings['ALLOW_DOWNLOADS'] = True
webview.create_window(
f"g4f - {g4f.version.utils.current_version}",
os.path.join(dirname, "client/index.html"),