🦋 New version release - #335
Merged
Merged
Conversation
brentrager
force-pushed
the
changeset-release/main
branch
from
August 8, 2026 12:44
da5e213 to
86f41d9
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@smooai/smooth-operator@1.36.11
Patch Changes
ce26442: Send temperature 1.0, not 0.0 — many frontier models reject anything but their default
A growing set of models accept only their default temperature and 400 the entire
request ("Unsupported value: 'temperature' does not support 0 with this model").
The symptom does not look like a config error: the server boots, accepts the turn,
every LLM call 400s, and the user sees an assistant that silently says nothing.
A per-model allowlist would be provably wrong —
gpt-5.1rejects whilegpt-5.2accepts,
gpt-5.4accepts whilegpt-5.4-prorejects.1.0was accepted by all12 models tested across 6 families, so it is the one value that works everywhere.
Centralised as
config::DEFAULT_TEMPERATURE. The cleaner long-term shape isOption<f32>onLlmConfig, so the request omits the field entirely and takeseach provider's own default.
@smooai/smooth-operator-web-chat-example@0.0.47
Patch Changes