Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@ def test_spec_decode_acceptance_length():
max_tokens=DEFAULT_OUTPUT_LEN,
temperature=0.0,
top_p=1.0,
# Prompts are already chat-templated (contain BOS); avoid the
# completions API prepending a second BOS, which would lower
# acceptance ~5% vs the add_special_tokens=False standalone baselines.
extra_body={"add_special_tokens": False},
)
if i < 3:
text = resp.choices[0].text.strip()[:100]
Expand Down
Loading