summaryrefslogtreecommitdiffstats
path: root/windows/main.py
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2024-04-09 19:19:33 +0200
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2024-04-09 19:19:33 +0200
commit90715e702bbebcf2c3cfd39628c931bbadda28b0 (patch)
treef574bae75b22ee59e5c60e2f6f4017338614fd8c /windows/main.py
parentAdd async client docs (diff)
downloadgpt4free-90715e702bbebcf2c3cfd39628c931bbadda28b0.tar
gpt4free-90715e702bbebcf2c3cfd39628c931bbadda28b0.tar.gz
gpt4free-90715e702bbebcf2c3cfd39628c931bbadda28b0.tar.bz2
gpt4free-90715e702bbebcf2c3cfd39628c931bbadda28b0.tar.lz
gpt4free-90715e702bbebcf2c3cfd39628c931bbadda28b0.tar.xz
gpt4free-90715e702bbebcf2c3cfd39628c931bbadda28b0.tar.zst
gpt4free-90715e702bbebcf2c3cfd39628c931bbadda28b0.zip
Diffstat (limited to 'windows/main.py')
-rw-r--r--windows/main.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/windows/main.py b/windows/main.py
deleted file mode 100644
index 11a3f902..00000000
--- a/windows/main.py
+++ /dev/null
@@ -1,22 +0,0 @@
-import ssl
-import certifi
-from functools import partial
-
-ssl.default_ca_certs = certifi.where()
-ssl.create_default_context = partial(
- ssl.create_default_context,
- cafile=certifi.where()
-)
-
-from g4f.gui.webview import run_webview
-from g4f.gui.run import gui_parser
-import g4f.debug
-g4f.debug.version_check = False
-g4f.debug.version = "0.2.8.0"
-
-if __name__ == "__main__":
- parser = gui_parser()
- args = parser.parse_args()
- if args.debug:
- g4f.debug.logging = True
- run_webview(args.debug) \ No newline at end of file