diff --git a/packages/botonic-plugin-ai-agents/CHANGELOG.md b/packages/botonic-plugin-ai-agents/CHANGELOG.md index a0296075df..9bbb60127a 100644 --- a/packages/botonic-plugin-ai-agents/CHANGELOG.md +++ b/packages/botonic-plugin-ai-agents/CHANGELOG.md @@ -12,6 +12,25 @@ All notable changes to Botonic will be documented in this file. +## [0.52.1] - 2026-07-14 + +### Added + +- [PR-3250](https://github.com/hubtype/botonic/pull/3250): No use reasoning_effort for gpt-5.6-luna. + + +## [0.51.6] - 2026-07-14 + +### Added + +- [PR-3250](https://github.com/hubtype/botonic/pull/3250): No use reasoning_effort for gpt-5.6-luna. + +## [0.51.5] - 2026-07-06 + +### Added + +- [PR-3239](https://github.com/hubtype/botonic/pull/3239): bump @botonic/core to v0.51.3 + ## [0.51.4] - 2026-07-06 ### Added diff --git a/packages/botonic-plugin-ai-agents/src/llm-config.ts b/packages/botonic-plugin-ai-agents/src/llm-config.ts index c5d71f11e6..4d1d77fd13 100644 --- a/packages/botonic-plugin-ai-agents/src/llm-config.ts +++ b/packages/botonic-plugin-ai-agents/src/llm-config.ts @@ -156,6 +156,13 @@ export class LLMConfig { } } + if (model.includes('luna')) { + return { + temperature: 1, + text: { verbosity }, + } + } + if (model.includes('gpt-5')) { return { reasoning: { effort: reasoningEffort ?? ReasoningEffort.None },