A SQL Assistant for Your DB
Give the model a schema, let it write SQL, run it against a sandboxed DB, and explain the results.
Project Goal
Build an agent that turns natural-language questions into SQL, executes against a sandboxed DB, and explains the results.
The bread-and-butter "talk to my database" agent.
Architecture
- User: "How many active users this month?"
- Agent calls list_tables and describe_table to learn schema
- Agent calls run_sql with the generated query
- Agent explains the result in natural language
All lessons in this course
- A Q&A Bot Over Your Documents
- A Code-Explainer Agent
- A Web-Browsing Research Agent
- A SQL Assistant for Your DB