chore: add MAX_THINKING_LEN and MAX_RESULT_LEN constants

This commit is contained in:
everywhere.z
2026-05-16 23:26:06 +08:00
parent 6cf7faed41
commit ab0efe6bd1

View File

@@ -34,6 +34,8 @@ public class ReActLoggingHook implements Hook {
private static final Logger LOG = LoggerFactory.getLogger(ReActLoggingHook.class);
private static final int MAX_TEXT_LEN = 500;
private static final int MAX_THINKING_LEN = 1000;
private static final int MAX_RESULT_LEN = 2000;
private final String sessionId;