We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4b7c66 commit f068368Copy full SHA for f068368
1 file changed
llms/main.py
@@ -3831,6 +3831,9 @@ def cli_exec(cli_args, extra_args):
3831
3832
verify_root_path()
3833
3834
+ if cli_args.auth:
3835
+ LLMS_AUTH = cli_args.auth
3836
+
3837
g_app = AppExtensions(cli_args, extra_args)
3838
3839
# Check for verbose mode from CLI argument or environment variables
@@ -3867,9 +3870,6 @@ def cli_exec(cli_args, extra_args):
3867
3870
print(f"Created default extra providers config at {home_providers_extra_path}")
3868
3871
return ExitCode.SUCCESS
3869
3872
- if cli_args.auth:
- LLMS_AUTH = cli_args.auth
-
3873
if cli_args.providers:
3874
if not os.path.exists(cli_args.providers):
3875
print(f"providers.json not found at {cli_args.providers}")
0 commit comments