Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 546 Bytes

vLLM.md

File metadata and controls

19 lines (14 loc) · 546 Bytes

vLLM Notes

Contents

Entrypoint

  • vLLM upstream containers have set openai servers as the default entrypoint (link). Use the following when launching docker container
    docker run --entrypoint /bin/bash ....
    

Formatting

  • Use pre-commit for formatting. Run this before commits.
    pip install -r requirements-lint.txt && pre-commit install