We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b7cf5d commit 2585e15Copy full SHA for 2585e15
trl/import_utils.py
@@ -82,9 +82,8 @@ def is_uvicorn_available() -> bool:
82
83
84
def is_vllm_available() -> bool:
85
- if (
86
- _vllm_available
87
- and version.parse(_vllm_version) < version.parse("0.10.0")
+ if _vllm_available and (
+ version.parse(_vllm_version) < version.parse("0.10.0")
88
or version.parse(_vllm_version) > version.parse("0.10.2")
89
):
90
warnings.warn(
0 commit comments