mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
16 lines
No EOL
1 KiB
Python
16 lines
No EOL
1 KiB
Python
from argparse import ArgumentParser
|
|
|
|
from ..cookies import browsers
|
|
from .. import Provider
|
|
|
|
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", "-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 |