File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ max_num_seqs: null
152152# If True, enables asynchronous scheduling in vLLM for faster generation
153153async_scheduling : True
154154# stop generation when any of these strings is generated
155- stop_strings : [</answer>]
155+ stop_strings : null
156156
157157# ====== Checkpoint Configuration ======
158158enable_checkpointing : True
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ def get_match_format_regex(tmvp_config):
106106 match_format = re .compile (
107107 (
108108 r"^[\s]{0,}"
109- rf"{ tmvp_config .reasoning_start_token } .+? { tmvp_config .reasoning_end_token } .*?"
109+ rf"{ tmvp_config .reasoning_start_token } .+{ tmvp_config .reasoning_end_token } .*?"
110110 rf"{ tmvp_config .solution_start_token } (.+?){ tmvp_config .solution_end_token } "
111111 ),
112112 flags = re .MULTILINE | re .DOTALL ,
You can’t perform that action at this time.
0 commit comments