You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using mistral-7b-instruct model, and prompt Here is the English alphabet: ABC, temperature 0, stop sequence DE, model would still output DEFGHIJKLMNOPQRSTUVWXYZ... this is because DEF is a token, and stop sequence is only checked with endswithhttps://github.com/vllm-project/vllm/blob/main/vllm/engine/llm_engine.py#L717 I think instead of we should check string contain.
The text was updated successfully, but these errors were encountered:
Your current environment
🐛 Describe the bug
Using mistral-7b-instruct model, and prompt
Here is the English alphabet: ABC
, temperature 0, stop sequenceDE
, model would still outputDEFGHIJKLMNOPQRSTUVWXYZ...
this is becauseDEF
is a token, and stop sequence is only checked withendswith
https://github.com/vllm-project/vllm/blob/main/vllm/engine/llm_engine.py#L717 I think instead of we should check string contain.The text was updated successfully, but these errors were encountered: