feat: truncate all the tool outputs

This commit is contained in:
YeonGyu-Kim
2025-12-22 14:16:50 +09:00
parent 08957ce1f0
commit c3e41c8363
3 changed files with 11 additions and 3 deletions

View File

@@ -113,6 +113,8 @@ export const ExperimentalConfigSchema = z.object({
preemptive_compaction: z.boolean().optional(),
/** Threshold percentage to trigger preemptive compaction (default: 0.80) */
preemptive_compaction_threshold: z.number().min(0.5).max(0.95).optional(),
/** Truncate all tool outputs, not just whitelisted tools (default: false) */
truncate_all_tool_outputs: z.boolean().optional(),
})
export const OhMyOpenCodeConfigSchema = z.object({