diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-04-06 16:37:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-06 16:37:19 +0200 |
commit | 158aa8e7f6be8afb993012122105dc084c018f68 (patch) | |
tree | e1e8f272eae70619f25a6d402ea99174decde812 /g4f/gui/webview.py | |
parent | Update webview.py (diff) | |
download | gpt4free-158aa8e7f6be8afb993012122105dc084c018f68.tar gpt4free-158aa8e7f6be8afb993012122105dc084c018f68.tar.gz gpt4free-158aa8e7f6be8afb993012122105dc084c018f68.tar.bz2 gpt4free-158aa8e7f6be8afb993012122105dc084c018f68.tar.lz gpt4free-158aa8e7f6be8afb993012122105dc084c018f68.tar.xz gpt4free-158aa8e7f6be8afb993012122105dc084c018f68.tar.zst gpt4free-158aa8e7f6be8afb993012122105dc084c018f68.zip |
Diffstat (limited to 'g4f/gui/webview.py')
-rw-r--r-- | g4f/gui/webview.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/g4f/gui/webview.py b/g4f/gui/webview.py index ad295939..6902f457 100644 --- a/g4f/gui/webview.py +++ b/g4f/gui/webview.py @@ -16,6 +16,7 @@ import g4f.debug def run_webview( debug: bool = False, + http_port: int = None, ssl: bool = True, storage_path: str = None, gui: str = None @@ -38,6 +39,7 @@ def run_webview( private_mode=False, storage_path=storage_path, debug=debug, + http_port=http_port, ssl=ssl, gui=gui ) |