I was using ChatGPT this week for help with a back injury I suddenly sustained. Because I don't have insurance I was looking for options as to what I should do and what it'd cost and where to go etc. I did get a suggestion that I followed up on for an in person visit. But my big beef with it was that it kept adding disclaimers: "I am not a doctor", "My current knowledge is up to September 2021, insurance and hospital…
ChatGPT loses users for first time, shaking faith in AI revolution
61–70 of 305 posts
Re: ChatGPT loses users for first time, shaking faith in AI revolution
#62Re: ChatGPT loses users for first time, shaking faith in AI revolution
#63Earlier quoted context omitted.
>I can't even get ChatGPT (+ web plugin), when given a list of restaurants in NYC, to tell me which ones are still open vs have closed, and what their hours of operation / locations are. This is doable using a tool I've built. The key is to have that data in a RDBMS and to use an LLM to generate the SQL query that answers your question. Companies haven't offered this yet because there's no safe way to execute these q…
Writing the SQL query is the easy part, collecting the data into the DB is the hard part. Can we get an LLM to collect the data into the DB? I was told LLMs are good at summarizing text like webpages into structured data.
Re: ChatGPT loses users for first time, shaking faith in AI revolution
#64Making GPT-4 more readily available will be a key indicator in the coming 3-6 months though, seeing what early projects and use cases people try with it. And also whether or not the speculated nerfing of the public GPT-4 backed ChatGPT extends to API use.
Re: ChatGPT loses users for first time, shaking faith in AI revolution
#65And current generations of LLM is very prone to lying (I don't use term hallucination, as IMO it's an attempt to whitewash limits of AI).
ChatGPT did a great job at showing people current state of AI. But they did even greater job at overhyping itself.
Re: ChatGPT loses users for first time, shaking faith in AI revolution
#66I was using ChatGPT this week for help with a back injury I suddenly sustained. Because I don't have insurance I was looking for options as to what I should do and what it'd cost and where to go etc. I did get a suggestion that I followed up on for an in person visit. But my big beef with it was that it kept adding disclaimers: "I am not a doctor", "My current knowledge is up to September 2021, insurance and hospital…
Re: ChatGPT loses users for first time, shaking faith in AI revolution
#67The culprit seems to be: > " Chollet thinks he knows what’s going on: summer vacation... a significant portion of students using ChatGPT to do their homework. It’s one of the most common uses for ChatGPT, according to Sam Gilbert, a data scientist and author. " https://finance.yahoo.com/news/chatgpt-suddenly-isn-t-boomin...
Re: ChatGPT loses users for first time, shaking faith in AI revolution
#68Earlier quoted context omitted.
Writing the SQL query is the easy part, collecting the data into the DB is the hard part. Can we get an LLM to collect the data into the DB? I was told LLMs are good at summarizing text like webpages into structured data.
The hard part is the SQL query, because you need to make sure the SQL query is safe to execute. Collecting data is far easier by comparison, but you absolutely could use an LLM for that too.
I think a lot of use cases could just be 1) set up a database with only public data and 2) use a read-only user.
The much tricker use case is those where you want to allow inserts and updates but only on specific tables or rows.