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 6c8c515 commit 0063fc3Copy full SHA for 0063fc3
vllm/engine/output_processor/stop_checker.py
@@ -113,7 +113,7 @@ def check_stop_strings(
113
stop_string_len = len(stop_str)
114
# Avoid searching already-searched text.
115
stop_index = output_text.find(stop_str,
116
- -new_char_count - stop_string_len)
+ 1 - new_char_count - stop_string_len)
117
if stop_index == -1:
118
continue
119
0 commit comments