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