|
|
|
|
|
by itsDersty
6 days ago
|
|
Very good project, it have a huge potential!
But while testing I found an issue: Dallas count bar chart
action failed
Couldn't produce the analysis step.
coder finished without calling run_in_sandbox / save_markdown_action.
Show count of people from Dallas as a small bar chart 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.