Update cli.py

This commit is contained in:
hoshi-hiyouga 2024-06-24 23:21:10 +08:00 committed by GitHub
parent 7d70ba7fb8
commit acb61f7ab7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class Command(str, Enum):
def main():
command = sys.argv.pop(1) if len(sys.argv) > 0 else Command.HELP
command = sys.argv.pop(1) if len(sys.argv) != 1 else Command.HELP
if command == Command.API:
run_api()
elif command == Command.CHAT: