live wire
IBM makes watsonx Orchestrate AgentOps, custom LLM judging and Bedrock-agent discovery generally availableIBMSchemaGate 0.1.45 fixes broken Oracle ADB wallet connections and an OCI stack pinned 28 releases behindSchemaGatePDI’s Amazon Quick procurement agent grounds spend answers in vendor, category and contract contextAWS Business Intelligence BlogBigQuery’s ML.METRICS example returns 0.84 accuracy but 0.30 macro-F1 on the same 100-row classification queryGoogle Cloud BigQuery docsSchemaGate 0.1.44 auto-selects sentence embeddings, lifting bundled-schema retrieval from 90/98 to 93/98SchemaGateSchemaGate 0.1.43 adds read-only SQL execution with per-principal table checks—and documents unauthenticated client assertionsSchemaGateDatabox adds reusable AI Analyst Skills with personal/company scope, auto-matching and marketplace installsDataboxFabric previews an AI builder for data-agent instructions, source guidance and example queriesMicrosoft FabricDatabricks trains data-agent retriever to stop early or spend bounded extra search steps, reporting 5.8-second latencyDatabricksThoughtSpot adds SpotterCode coding agent to its Visual Embed PlaygroundThoughtSpotLongMemEval-S audit: 67–73% of restore-fixable 80k-budget errors came from evicted evidence under three policiesarXivSchemaGate 0.1.42 adds dimension-aware retrieval and fixes complex multi-table SQL promptsSchemaGateSnowflake agent toolsets can silently drop inherited tools when callers lack accessSnowflake DocumentationLooker’s VS Code extension reaches GA with MCP-assisted LookML generation, editing and validationGoogle Cloud Looker release docsIBM makes watsonx Orchestrate AgentOps, custom LLM judging and Bedrock-agent discovery generally availableIBMSchemaGate 0.1.45 fixes broken Oracle ADB wallet connections and an OCI stack pinned 28 releases behindSchemaGatePDI’s Amazon Quick procurement agent grounds spend answers in vendor, category and contract contextAWS Business Intelligence BlogBigQuery’s ML.METRICS example returns 0.84 accuracy but 0.30 macro-F1 on the same 100-row classification queryGoogle Cloud BigQuery docsSchemaGate 0.1.44 auto-selects sentence embeddings, lifting bundled-schema retrieval from 90/98 to 93/98SchemaGateSchemaGate 0.1.43 adds read-only SQL execution with per-principal table checks—and documents unauthenticated client assertionsSchemaGateDatabox adds reusable AI Analyst Skills with personal/company scope, auto-matching and marketplace installsDataboxFabric previews an AI builder for data-agent instructions, source guidance and example queriesMicrosoft FabricDatabricks trains data-agent retriever to stop early or spend bounded extra search steps, reporting 5.8-second latencyDatabricksThoughtSpot adds SpotterCode coding agent to its Visual Embed PlaygroundThoughtSpotLongMemEval-S audit: 67–73% of restore-fixable 80k-budget errors came from evicted evidence under three policiesarXivSchemaGate 0.1.42 adds dimension-aware retrieval and fixes complex multi-table SQL promptsSchemaGateSnowflake agent toolsets can silently drop inherited tools when callers lack accessSnowflake DocumentationLooker’s VS Code extension reaches GA with MCP-assisted LookML generation, editing and validationGoogle Cloud Looker release docs
nl2sql.ai
analysisUNDERREPORTED

Jeeves 1.1 catches valid SQL with the wrong answer shape—but exposes a harder join ceiling

The Laravel NL2SQL package retries singleton questions that return lists, while its own 46-question test still shows three-table joins as the stubborn failure mode.

Chart showing Jeeves 1.1 accuracy by join width and overall scores.
Chart: figures from the story
By The News Desk· Sep 11, 2026the quick take — two AI hosts go live when you do

A text-to-SQL system can generate syntactically valid, executable SQL and still answer a different question from the one the user asked. Jeeves 1.1 turns one version of that problem into an explicit post-execution check: when a question asks for one thing but execution returns a list, the Laravel package regenerates the query once with a prompt that states the expected shape.

The maintainer’s example is “Which carrier shipped the most orders?” A model can produce an otherwise valid ranking query without LIMIT 1; the first row is useful, but every additional row violates the singular request. A pre-execution SQL verifier cannot infer the mistake from validity alone. Jeeves therefore inspects the row count locally after execution, then sends the question, schema and a one-sentence shape correction for the retry. The release says no returned value, row or count is included in that prompt. The v1.1 release notes document the behavior and its privacy boundary.

Shape checks are narrow by design

This is a useful production pattern precisely because it is not presented as a general correctness oracle. Cardinality can contradict a question’s grammar, but a one-row result may still contain the wrong metric, filter or join. Teams adopting the pattern should treat answer shape as another deterministic assertion alongside SQL parsing, allowlists, read-only credentials and timeouts—not as proof that the answer is correct.

The release also adds optional semantic dataset matching before model-based routing. Exact routes retain priority; confident embedding matches can save the routing call, while misses, timeouts and unknown dataset names fall back to the existing path. The feature is off by default, and operators must supply both the embedding service and a corpus generated from their own schema descriptions.

The disclosed weakness matters more than the retry

Jeeves reports that the release does not improve its measured SQL accuracy: 35 of 46 questions, or 76%, on its own set, and 30–31 of 36 on a Spider development sample. The maintainer also breaks the internal set down by join width. Three-table questions scored 2 of 6, compared with 13 of 16 for two-table questions. The release says the full join path was already present in the prompt and that curating schema descriptions did not remove the failure.

Those figures are maintainer-reported results on small samples, not an independent benchmark, and the variable Spider score should not be read as a leaderboard result. Still, the disclosure gives evaluators a practical test plan: stratify questions by join width and answer cardinality, run the package’s benchmark command against the organization’s own schema and reference SQL, and inspect whether a retry fixed the semantics or merely changed the row count.

Jeeves 1.1’s most transferable lesson is that NL2SQL evaluation needs multiple failure labels. “Executed” is not the same as “answered”; “correct shape” is not the same as “correct query”; and aggregate accuracy can conceal a steep failure pocket in the joins a production schema actually requires.

Filed by The News Desk. Corrections: desk@nl2sql.ai · Our standards →

comments · 0

    Comments are moderated before they appear. Your email is used once to confirm it is you — never shown, never sold. Corrections and questions get an answer from the desk when we have one.