summaryrefslogtreecommitdiffstats
path: root/g4f/gui/webview.py
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-03-22 13:01:48 +0100
committerGitHub <noreply@github.com>2024-03-22 13:01:48 +0100
commitcb74a39d9272801e5d264574fc16fce8ac89011d (patch)
tree81c2e2a16703797153f398953f757ef531c283ff /g4f/gui/webview.py
parentMerge pull request #1729 from hlohaus/giga (diff)
parentAdd updated requirements (diff)
downloadgpt4free-cb74a39d9272801e5d264574fc16fce8ac89011d.tar
gpt4free-cb74a39d9272801e5d264574fc16fce8ac89011d.tar.gz
gpt4free-cb74a39d9272801e5d264574fc16fce8ac89011d.tar.bz2
gpt4free-cb74a39d9272801e5d264574fc16fce8ac89011d.tar.lz
gpt4free-cb74a39d9272801e5d264574fc16fce8ac89011d.tar.xz
gpt4free-cb74a39d9272801e5d264574fc16fce8ac89011d.tar.zst
gpt4free-cb74a39d9272801e5d264574fc16fce8ac89011d.zip
Diffstat (limited to 'g4f/gui/webview.py')
-rw-r--r--g4f/gui/webview.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/g4f/gui/webview.py b/g4f/gui/webview.py
index 36ad0e60..b015dbed 100644
--- a/g4f/gui/webview.py
+++ b/g4f/gui/webview.py
@@ -16,6 +16,7 @@ import g4f.debug
def run_webview(
debug: bool = False,
+ ssl: bool = True,
storage_path: str = None
):
if getattr(sys, 'frozen', False):
@@ -36,7 +37,7 @@ def run_webview(
private_mode=False,
storage_path=storage_path,
debug=debug,
- ssl=True
+ ssl=ssl
)
if __name__ == "__main__":