gen_config.py 200 B

12345678910
  1. from ray.llm._internal.serve.config_generator.start import gen_config
  2. def main():
  3. """Entry point for the CLI when called as a module."""
  4. gen_config()
  5. if __name__ == "__main__":
  6. main()