Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions packages/botonic-plugin-ai-agents/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,25 @@ All notable changes to Botonic will be documented in this file.

</details>

## [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
Expand Down
7 changes: 7 additions & 0 deletions packages/botonic-plugin-ai-agents/src/llm-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down
Loading