-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(tgi): allow top_k = 0 and top_p = 1 when do_sample = True This might not be the most elegant solution, but it will allow the server to keep working when the web ui gives a request with these parameters for instruct models. * chore: update version to 0.1.4
- Loading branch information
1 parent
da2d1ad
commit 7f5b0cc
Showing
3 changed files
with
2 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
text-generation-inference/server/text_generation_server/version.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from pkg_resources import parse_version | ||
|
||
|
||
__version__ = "0.1.3" | ||
__version__ = "0.1.4" | ||
VERSION = parse_version(__version__) |