🦋 New version release - #543
Merged
Merged
Conversation
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.58.1
Patch Changes
2fc47ab: Add a deterministic search-quality regression suite and formalize the judged evals into a scored regression layer (feature gap G4).
The half that gates CI.
rust/evalsnow ships a retrieval-quality eval that needs no LLM, no key, and no network: a frozen 20-document corpus is seeded through the real ingest→chunk→embed→store pipeline, a frozen 20-query labeled set runs through the realknowledge_searchtool, and the ranked results are scored with recall@3, recall@5, and MRR against hand-written thresholds. It is deliberately ungated — noSMOOTH_AGENT_E2E, no feature flag, no#[ignore]— so it runs on every PR and catches a chunker change, an embedder swap, or a rerank bug the day it lands.Four permanent degradation tests prove the suite can actually go red: half the corpus dropped, 48-char chunking, first-paragraph-only extraction, and a reranker with its comparator reversed each breach the thresholds the gate enforces.
The judged half. Every eval scenario now declares a typed
Competency(grounding, anti-hallucination, tool use, multi-turn reasoning, safety, tone), and a newregressionsuite rolls all 15 scenarios up into a per-competencyScorecardwith its own floor — so a drop in grounding no longer averages away against a rise in tone.SMOOTH_AGENT_EVAL_MODELlets the agent model be swept, andSMOOTH_AGENT_EVALS_REQUIRED=1turns "skipped for want of credentials" into a hard failure.Nightly CI.
.github/workflows/nightly-evals.ymlruns the judged suite across a model matrix, appends each night's scorecard to a cached score history, and renders the trend into the job summary. It fails loudly when the gateway key is missing rather than reporting a green no-op, and nothing in it parses a test log.@smooai/smooth-operator-web-chat-example@0.0.114
Patch Changes