From 0e198ec88f348dec0df89984421796becd989d20 Mon Sep 17 00:00:00 2001 From: Laura Date: Sat, 16 Aug 2025 15:16:34 +0200 Subject: [PATCH] small tweak --- env.go | 4 ++-- example.config.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/env.go b/env.go index 5ba8b70..9c9c7c7 100644 --- a/env.go +++ b/env.go @@ -13,8 +13,8 @@ type EnvTokens struct { } type EnvSettings struct { - CleanContent bool `json:"cleanContent"` - MaxIterations uint `json:"maxIterations"` + CleanContent bool `json:"cleanup"` + MaxIterations uint `json:"iterations"` } type Environment struct { diff --git a/example.config.yml b/example.config.yml index 4d656d3..037b29a 100644 --- a/example.config.yml +++ b/example.config.yml @@ -9,6 +9,6 @@ tokens: settings: # Replace unicode quotes, dashes, etc. in the assistants output (optional, default: false) - cleanContent: true + cleanup: true # How many messages/tool calls before the model is cut off (optional, default: 3) - maxIterations: 3 \ No newline at end of file + iterations: 3 \ No newline at end of file