When I asked AI to show me how many people are from Dallas (from AdventureWorks LT demo file), it thrown this error. Also small tip: make a demo file choose window scrollable, because it doesn't fit on my screen. In any case, nice project.
For the "show me how many people are from Dallas" in AdventureWorks, it really depends on the model.
With `gemini-3.1-flash-lite` for all agents it produces this sql from the first try for $0.0033: ``` SELECT COUNT(DISTINCT ca.CustomerID) as customer_count FROM CustomerAddress ca JOIN ( SELECT a.AddressID FROM vector_search('Address', 'City', 'Dallas', 20) vs JOIN Address a ON a.rowid = vs.rowid WHERE a.City = 'Dallas' ) addr ON ca.AddressID = addr.AddressID ```
and then formats output in Markdown.
I'll bake some default model in later, and more examples. And I guess it needs some default token quota.