diff options
author | abc <98614666+xtekky@users.noreply.github.com> | 2023-10-06 20:52:17 +0200 |
---|---|---|
committer | abc <98614666+xtekky@users.noreply.github.com> | 2023-10-06 20:52:17 +0200 |
commit | 7e4e374f621d9d1c37f37ff6555e013cdb3b03a0 (patch) | |
tree | eef5caa70f7707a7dc9467ef6849db278d9cfa06 /g4f/gui/__init__.py | |
parent | ~ (diff) | |
download | gpt4free-7e4e374f621d9d1c37f37ff6555e013cdb3b03a0.tar gpt4free-7e4e374f621d9d1c37f37ff6555e013cdb3b03a0.tar.gz gpt4free-7e4e374f621d9d1c37f37ff6555e013cdb3b03a0.tar.bz2 gpt4free-7e4e374f621d9d1c37f37ff6555e013cdb3b03a0.tar.lz gpt4free-7e4e374f621d9d1c37f37ff6555e013cdb3b03a0.tar.xz gpt4free-7e4e374f621d9d1c37f37ff6555e013cdb3b03a0.tar.zst gpt4free-7e4e374f621d9d1c37f37ff6555e013cdb3b03a0.zip |
Diffstat (limited to 'g4f/gui/__init__.py')
-rw-r--r-- | g4f/gui/__init__.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/g4f/gui/__init__.py b/g4f/gui/__init__.py new file mode 100644 index 00000000..90a6c7a6 --- /dev/null +++ b/g4f/gui/__init__.py @@ -0,0 +1,30 @@ +from .server.app import app +from .server.website import Website +from .server.backend import Backend_Api + +def run_gui(host: str = '0.0.0.0', port: int = 80, debug: bool = False) -> None: + config = { + 'host' : host, + 'port' : port, + 'debug': debug + } + + site = Website(app) + for route in site.routes: + app.add_url_rule( + route, + view_func = site.routes[route]['function'], + methods = site.routes[route]['methods'], + ) + + backend_api = Backend_Api(app) + for route in backend_api.routes: + app.add_url_rule( + route, + view_func = backend_api.routes[route]['function'], + methods = backend_api.routes[route]['methods'], + ) + + print(f"Running on port {config['port']}") + app.run(**config) + print(f"Closing port {config['port']}")
\ No newline at end of file |