π¦ New version release - #449
Merged
Merged
Conversation
brentrager
enabled auto-merge (squash)
August 17, 2026 21:29
brentrager
force-pushed
the
changeset-release/main
branch
from
August 17, 2026 21:30
7ce7c13 to
8f5bec0
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.50.2
Patch Changes
6cd5ea4: feat(dotnet): emit
gen_ai.chat/gen_ai.toolOpenTelemetry spans on the turn path (th-873430, M parity)The .NET server emitted no OpenTelemetry spans, so its turns were invisible in the observability
studio next to the Rust server's. This brings it to parity:
TurnRunner.RunAsyncnow opens agen_ai.chatactivity per turn β carryinggen_ai.system,gen_ai.request.model,gen_ai.conversation.id,gen_ai.agent.name, and, on completion, thegen_ai.usage.input_tokens/gen_ai.usage.output_tokenscounts β and each tool call opens a childgen_ai.toolactivity withgen_ai.tool.nameand the (secret-redacted)gen_ai.tool.call.arguments. The attribute keys andspan names are byte-identical to the Rust
smooth_operator::telemetrymodule.Spans flow from a named
ActivitySource("smooth-operator"); the host wires an OTLP exporter onlywhen
OTEL_EXPORTER_OTLP_ENDPOINTis set (the same env gate as the Rust host'sinit_telemetry),so a collector-less run has zero telemetry overhead.
gen_ai.request.modelis read from the sameSMOOTH_AGENT_MODELβSMOOAI_MODELβSMOOTH_MODELenv chain the host resolves the gateway modelfrom. An xUnit test mirrors
tests/telemetry.rswith an in-memoryActivityListener.@smooai/smooth-operator-web-chat-example@0.0.84
Patch Changes