|
|
|
|
|
by dennis16384
5 days ago
|
|
Thanks! Yep will change the UI there. 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. |
|