any way to follow these developments vs pure LLM research?
Show HN: We open sourced our entire text-to-SQL product
11–20 of 147 posts
Re: Show HN: We open sourced our entire text-to-SQL product
#12Not finding the license anywhere. Which one have you chosen?
Re: Show HN: We open sourced our entire text-to-SQL product
#13Interesting! I am assuming it can do complex joins. Are there any examples of text -> sql it produces? I looked on the website but only saw "coming soon"
The agent also can be finetuned on sample NL SQL pairs or they can be used in few shot prompting.
Re: Show HN: We open sourced our entire text-to-SQL product
#14Have you considered enforcing a grammar on the LLM when it is generating SQL? This could ensure that it only generates syntactically valid SQL, including awareness of the valid set of field names and their types, and such. It would not be easy, by any means, but I believe it is theoretically possible.
That cannot be done when using OpenAI API calls as far as I know
I thought it was fairly obvious that we were talking about a local LLM agent... if DataHerald is a wrapper around only OpenAI, and no other options, then that seems unfortunate.
Re: Show HN: We open sourced our entire text-to-SQL product
#15Re: Show HN: We open sourced our entire text-to-SQL product
#16Have you considered enforcing a grammar on the LLM when it is generating SQL? This could ensure that it only generates syntactically valid SQL, including awareness of the valid set of field names and their types, and such. It would not be easy, by any means, but I believe it is theoretically possible.
Re: Show HN: We open sourced our entire text-to-SQL product
#17Earlier quoted context omitted.
That cannot be done when using OpenAI API calls as far as I know
Nobody in the original post or this entire discussion said anything about OpenAI until your comment. I thought it was fairly obvious that we were talking about a local LLM agent... if DataHerald is a wrapper around only OpenAI, and no other options, then that seems unfortunate.
Re: Show HN: We open sourced our entire text-to-SQL product
#18Re: Show HN: We open sourced our entire text-to-SQL product
#19Re: Show HN: We open sourced our entire text-to-SQL product
#20I still wonder who the audience is for tools like this. The website posits you can answer data questions without going through an analyst, but the role of the analyst is not to be a SQL whisperer for PMs and Executives - it is to be an expert in the model and the data. A data warehouse of any real scale is going to have some amount of issues - anomalous data, different interpretations of the same numbers - how does t…