diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-20 20:06:35 +0200 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-20 20:06:35 +0200 |
commit | fdc8b88d17f7b9fa59aafa02612017c8cb32dbf9 (patch) | |
tree | 364445e7d5f3305ea345ece50a5d4c5c8abac5c9 /g4f/cli.py | |
parent | Add AbraGeoBlockedError handling (diff) | |
download | gpt4free-fdc8b88d17f7b9fa59aafa02612017c8cb32dbf9.tar gpt4free-fdc8b88d17f7b9fa59aafa02612017c8cb32dbf9.tar.gz gpt4free-fdc8b88d17f7b9fa59aafa02612017c8cb32dbf9.tar.bz2 gpt4free-fdc8b88d17f7b9fa59aafa02612017c8cb32dbf9.tar.lz gpt4free-fdc8b88d17f7b9fa59aafa02612017c8cb32dbf9.tar.xz gpt4free-fdc8b88d17f7b9fa59aafa02612017c8cb32dbf9.tar.zst gpt4free-fdc8b88d17f7b9fa59aafa02612017c8cb32dbf9.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/cli.py | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -1,32 +1,32 @@ import argparse -from enum import Enum -import g4f from g4f import Provider - from g4f.gui.run import gui_parser, run_gui_args -def run_gui(args): - print("Running GUI...") - def main(): - IgnoredProviders = Enum("ignore_providers", {key: key for key in Provider.__all__}) parser = argparse.ArgumentParser(description="Run gpt4free") subparsers = parser.add_subparsers(dest="mode", help="Mode to run the g4f in.") - api_parser=subparsers.add_parser("api") + api_parser = subparsers.add_parser("api") api_parser.add_argument("--bind", default="0.0.0.0:1337", help="The bind string.") api_parser.add_argument("--debug", action="store_true", help="Enable verbose logging.") api_parser.add_argument("--workers", type=int, default=None, help="Number of workers.") api_parser.add_argument("--disable_colors", action="store_true", help="Don't use colors.") - api_parser.add_argument("--ignored-providers", nargs="+", choices=[provider.name for provider in IgnoredProviders], + api_parser.add_argument("--ignored-providers", nargs="+", choices=[provider for provider in Provider.__map__], default=[], help="List of providers to ignore when processing request.") subparsers.add_parser("gui", parents=[gui_parser()], add_help=False) args = parser.parse_args() if args.mode == "api": import g4f.api - g4f.api.api.set_list_ignored_providers(args.ignored_providers) - g4f.api.run_api(bind=args.bind, debug=args.debug, workers=args.workers, use_colors=not args.disable_colors) + g4f.api.api.set_list_ignored_providers( + args.ignored_providers + ) + g4f.api.run_api( + bind=args.bind, + debug=args.debug, + workers=args.workers, + use_colors=not args.disable_colors + ) elif args.mode == "gui": run_gui_args(args) else: |