diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-03-17 10:52:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-17 10:52:54 +0100 |
commit | 9536b857d67b2b9b819580eeb55c6a051454075f (patch) | |
tree | 6002f32229f616f16738c35d4b0a63d59b5ee378 /g4f/gui/webview.py | |
parent | Update GigaChat.py (diff) | |
parent | Fix abort in webview (diff) | |
download | gpt4free-9536b857d67b2b9b819580eeb55c6a051454075f.tar gpt4free-9536b857d67b2b9b819580eeb55c6a051454075f.tar.gz gpt4free-9536b857d67b2b9b819580eeb55c6a051454075f.tar.bz2 gpt4free-9536b857d67b2b9b819580eeb55c6a051454075f.tar.lz gpt4free-9536b857d67b2b9b819580eeb55c6a051454075f.tar.xz gpt4free-9536b857d67b2b9b819580eeb55c6a051454075f.tar.zst gpt4free-9536b857d67b2b9b819580eeb55c6a051454075f.zip |
Diffstat (limited to 'g4f/gui/webview.py')
-rw-r--r-- | g4f/gui/webview.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/g4f/gui/webview.py b/g4f/gui/webview.py index a8e745f3..ba764947 100644 --- a/g4f/gui/webview.py +++ b/g4f/gui/webview.py @@ -1,3 +1,5 @@ +import sys +import os.path import webview try: from platformdirs import user_config_dir @@ -14,9 +16,13 @@ def run_webview( debug: bool = False, storage_path: str = None ): + if getattr(sys, 'frozen', False): + dirname = sys._MEIPASS + else: + dirname = os.path.dirname(__file__) webview.create_window( f"g4f - {g4f.version.utils.current_version}", - "client/index.html", + os.path.join(dirname, "client/index.html"), text_select=True, js_api=Api(), ) |