Browse Source

fix: typo in args_tools.py

AlpinDale 1 year ago
parent
commit
8f7853c255
1 changed files with 1 additions and 1 deletions
  1. 1 1
      aphrodite/engine/args_tools.py

+ 1 - 1
aphrodite/engine/args_tools.py

@@ -78,7 +78,7 @@ class AsyncEngineArgs(EngineArgs):
         parser: argparse.ArgumentParser,
     ) -> argparse.ArgumentParser:
         parser = EngineArgs.add_cli_args(parser)
-        parser.add_argument('--engine-use-ray' action='store_true', help='use Ray to start the Aphrodite Engine in a separate process as the server process.')
+        parser.add_argument('--engine-use-ray', action='store_true', help='use Ray to start the Aphrodite Engine in a separate process as the server process.')
         parser.add_argument('--disable-log-requests', action='store_true', help='disable logging requests')
         return parser