summaryrefslogtreecommitdiffstats
path: root/g4f/gui
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2023-12-11 02:50:33 +0100
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2023-12-11 02:50:33 +0100
commitb2d02ed624f9354214228c3f4d5dcb1a74d792b3 (patch)
tree9b25c40faba70070869d5a260fabe7610e780435 /g4f/gui
parentAdd error classes (diff)
downloadgpt4free-b2d02ed624f9354214228c3f4d5dcb1a74d792b3.tar
gpt4free-b2d02ed624f9354214228c3f4d5dcb1a74d792b3.tar.gz
gpt4free-b2d02ed624f9354214228c3f4d5dcb1a74d792b3.tar.bz2
gpt4free-b2d02ed624f9354214228c3f4d5dcb1a74d792b3.tar.lz
gpt4free-b2d02ed624f9354214228c3f4d5dcb1a74d792b3.tar.xz
gpt4free-b2d02ed624f9354214228c3f4d5dcb1a74d792b3.tar.zst
gpt4free-b2d02ed624f9354214228c3f4d5dcb1a74d792b3.zip
Diffstat (limited to 'g4f/gui')
-rw-r--r--g4f/gui/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/g4f/gui/run.py b/g4f/gui/run.py
index 0f94814c..7ff769fd 100644
--- a/g4f/gui/run.py
+++ b/g4f/gui/run.py
@@ -6,7 +6,7 @@ from g4f.gui import run_gui
def gui_parser():
parser = ArgumentParser(description="Run the GUI")
parser.add_argument("-host", type=str, default="0.0.0.0", help="hostname")
- parser.add_argument("-port", type=int, default=80, help="port")
+ parser.add_argument("-port", type=int, default=8080, help="port")
parser.add_argument("-debug", action="store_true", help="debug mode")
return parser