Skip to content

Commit

Permalink
use concrete version instead of latest (#452)
Browse files Browse the repository at this point in the history
* recommended to use concrete version instead of latest

* ruff style

---------

Co-authored-by: Nathan Habib <30601243+NathanHB@users.noreply.github.com>
  • Loading branch information
ErikKaum and NathanHB authored Dec 17, 2024
1 parent 1b9e2c3 commit bc62cb9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lighteval/models/endpoints/endpoint_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,7 @@ def __init__( # noqa: C901
**config.get_dtype_args(),
**config.get_custom_env_vars(),
},
"url": (
config.image_url or "ghcr.io/huggingface/text-generation-inference:latest"
),
"url": (config.image_url or "ghcr.io/huggingface/text-generation-inference:3.0.1"),
},
)
else: # Endpoint exists
Expand Down

0 comments on commit bc62cb9

Please sign in to comment.