mirror of
https://github.com/xtekky/gpt4free.git
synced 2026-04-22 23:57:17 +08:00
16 lines
1.1 KiB
Python
16 lines
1.1 KiB
Python
from argparse import ArgumentParser
|
|
|
|
from ..cookies import BROWSERS
|
|
from .. import Provider
|
|
|
|
def gui_parser(exit_on_error: bool = True):
|
|
parser = ArgumentParser(description="Run the GUI", exit_on_error=exit_on_error)
|
|
parser.add_argument("--host", type=str, default="0.0.0.0", help="hostname")
|
|
parser.add_argument("--port", "-p", type=int, default=8080, help="port")
|
|
parser.add_argument("--debug", "-d", "-debug", action="store_true", help="debug mode")
|
|
parser.add_argument("--ignore-cookie-files", action="store_true", help="Don't read .har and cookie files.")
|
|
parser.add_argument("--ignored-providers", nargs="+", choices=[provider.__name__ for provider in Provider.__providers__ if provider.working],
|
|
default=[], help="List of providers to ignore when processing request. (incompatible with --reload and --workers)")
|
|
parser.add_argument("--cookie-browsers", nargs="+", choices=[browser.__name__ for browser in BROWSERS],
|
|
default=[], help="List of browsers to access or retrieve cookies from.")
|
|
return parser |