From df7ba2c5eb0c62e427e8ab884d1883999812c25b Mon Sep 17 00:00:00 2001 From: ThatLukinhasGuy <139662282+thatlukinhasguy1@users.noreply.github.com> Date: Sat, 4 Nov 2023 18:25:21 -0300 Subject: Update cli.py --- g4f/cli.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'g4f') diff --git a/g4f/cli.py b/g4f/cli.py index 2938a335..a8fcba47 100644 --- a/g4f/cli.py +++ b/g4f/cli.py @@ -17,7 +17,6 @@ def main(): api_parser=subparsers.add_parser("api") api_parser.add_argument("--bind", default="127.0.0.1:1337", help="The bind string.") api_parser.add_argument("--debug", type=bool, default=False, help="Enable verbose logging") - api_parser.add_argument("--num-threads", type=int, default=8, help="The number of threads.") 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) @@ -25,7 +24,7 @@ def main(): args = parser.parse_args() if args.mode == "api": controller=Api(g4f, debug=args.debug, list_ignored_providers=args.ignored_providers) - controller.run(args.bind, args.num_threads) + controller.run(args.bind) elif args.mode == "gui": run_gui_args(args) else: -- cgit v1.2.3