-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve vLLM backend documentation #22
Conversation
6b20675
to
9879a48
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks for improving docs. Left some suggestions.
Co-authored-by: Olga Andreeva <[email protected]>
Co-authored-by: Olga Andreeva <[email protected]>
README.md
Outdated
registry. These are available starting in 23.10. | ||
The tritonserver_vllm container has everything you need to run your vLLM model. | ||
registry. \<xx.yy\> is the version of Triton that you want to use. Please note, | ||
that Triton's vLLM container was first published in 23.10 release, so any prior |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would get rid of the subordinate clause (, so any prior verson will not work.
). It is redundant and can be unclear for future Triton versions.
README.md
Outdated
in [build.py](https://github.com/triton-inference-server/server/blob/main/build.py) | ||
for the Triton version you are using. | ||
|
||
If you would like to use a specific vLLM commit or the latest version of vLLM, you |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is no longer necessary.
To get the latest vLLM, you can do: pip install git+https://github.com/vllm-project/vllm.git
To get a specific vLLM commit, you can do something like: pip install git+https://github.com/vllm-project/vllm.git@7d761fe3c12e87df37383467c43c97dec2bb8470
Co-authored-by: dyastremsky <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Great work! |
Avoids a lot of confusion and improves user experience.