From cd3a9163c7c447d4eb5903cabc602d0a4bdef279 Mon Sep 17 00:00:00 2001 From: Partho Das Date: Sun, 8 Mar 2026 04:42:02 +0530 Subject: [PATCH] Revert "eval max_token_length consistent with training config" This reverts commit 5f52befd384f100919fc5a1d7e2cd3120b79a194. --- environments/math_server_zero.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/math_server_zero.py b/environments/math_server_zero.py index b067728e..d543b7e7 100644 --- a/environments/math_server_zero.py +++ b/environments/math_server_zero.py @@ -259,7 +259,7 @@ class MathEnv(BaseEnv): completion = await managed.completion( prompt=question, n=1, - max_tokens=self.config.max_token_length, + max_tokens=32765, temperature=0.0, split="eval", stop=stop_list,