diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-20 18:04:16 +0200 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-20 18:04:16 +0200 |
commit | e6863a75e1a495794fa728482389c859a73aea98 (patch) | |
tree | 4a3b9d7f312ee8f24d248e9d670d24888f847039 /g4f/cli.py | |
parent | Add workers and use_colors options to api (diff) | |
download | gpt4free-e6863a75e1a495794fa728482389c859a73aea98.tar gpt4free-e6863a75e1a495794fa728482389c859a73aea98.tar.gz gpt4free-e6863a75e1a495794fa728482389c859a73aea98.tar.bz2 gpt4free-e6863a75e1a495794fa728482389c859a73aea98.tar.lz gpt4free-e6863a75e1a495794fa728482389c859a73aea98.tar.xz gpt4free-e6863a75e1a495794fa728482389c859a73aea98.tar.zst gpt4free-e6863a75e1a495794fa728482389c859a73aea98.zip |
Diffstat (limited to 'g4f/cli.py')
-rw-r--r-- | g4f/cli.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -15,9 +15,9 @@ def main(): subparsers = parser.add_subparsers(dest="mode", help="Mode to run the g4f in.") 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", type=bool, default=False, help="Enable verbose logging.") + 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("--use_colors", type=bool, default=None, help="Use colors.") + 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], default=[], help="List of providers to ignore when processing request.") subparsers.add_parser("gui", parents=[gui_parser()], add_help=False) @@ -26,7 +26,7 @@ def main(): 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=args.use_colors) + 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: |