Skip to content

Commit

Permalink
πŸ› don't use vllm.__commit__
Browse files Browse the repository at this point in the history
Signed-off-by: Prashant Gupta <[email protected]>
  • Loading branch information
prashantgupta24 authored and dtrifiro committed Oct 1, 2024
1 parent c399b6a commit 896db8b
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/vllm_tgis_adapter/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,7 @@ def run_and_catch_termination_cause(
args = postprocess_tgis_args(parser.parse_args())
assert args is not None

version_info = (
f"{vllm.__version__}" + vllm.__commit__
if vllm.__commit__ != "COMMIT_HASH_PLACEHOLDER"
else "unknown"
)
logger.info("vLLM version %s", version_info)
logger.info("vLLM version %s", f"{vllm.__version__}")
logger.info("args: %s", args)

asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
Expand Down

0 comments on commit 896db8b

Please sign in to comment.