Talk to your DB is an interface that converts natural language into SQL against PostgreSQL. Non-technical users type a question. The system returns a query and a result. Live: talk-to-your-db.vercel.app.
Schema-aware prompts are the product
A naked LLM will invent a `users_v2` table. Talk to your DB loads the real schema - tables, columns, relationships - into the prompt so generation is constrained to what exists. That is why evaluated common reads landed around 85% accuracy. The remaining failures are usually ambiguous English, not missing tables.
Latency budget
Common read operations complete in under 1.2 seconds. That budget includes model time and Postgres time. If the hop feels like a batch job, operators go back to asking an engineer. Speed is part of trust.
What shipped
Vishu Pratap built Talk to your DB, a schema-aware natural-language-to-SQL tool for PostgreSQL with ~85% accuracy on common reads and sub-1.2s typical response time. Timeline: 6 weeks. Deep dive: Schema-aware NL-to-SQL.