Skip to content

Generates SQL queries based on DB schema and English text by leveraging Llama3.2 in self-contained Colab Notebook.

Notifications You must be signed in to change notification settings

halftruths/QueryCraft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

QueryCraft

Colab Notebook Demo

Description

QueryCraft is a self-contained Colab notebook that generates SQL queries based on a provided database schema and an English text description. It leverages the Llama3.2 language model to interpret the user's query, converting it into a corresponding SQL statement.

The project includes an intuitive Gradio interface for input of schema details and text query intructions. Generate SQL without manually writing queries.

Features

  • Natural Language Input: Convert plain English questions into SQL queries.
  • Schema Interpretation: Understands provided DB schemas to generate precise SQL statements.

Installation & Usage

  1. Open the Colab Notebook Demo.
    • Low memory will run fine, but enabling the following runtime-type settings will allow for faster processing:
      • High-RAM
      • Hardware Accelerator GPU
  2. Select 'Runtime->Run All'
  3. Use the Gradio interface to input:
    • A database schema.
    • A query in English text.
  4. The tool will return the corresponding SQL statement based on the input.

Example

Input Txt

"How many teachers teach only one class?"

Input Schema:

CREATE TABLE Students (
    student_id INT PRIMARY KEY,
    name VARCHAR(255),
    email VARCHAR(255) UNIQUE
);

CREATE TABLE Teachers (
    teacher_id INT PRIMARY KEY,
    name VARCHAR(255),
    specialty VARCHAR(255)
);

CREATE TABLE Classes (
    class_id INT PRIMARY KEY,
    title VARCHAR(255),
    teacher_id INT,
    FOREIGN KEY (teacher_id) REFERENCES Teachers(teacher_id)
);

CREATE TABLE ClassroomAssignments (
    assignment_id INT PRIMARY KEY,
    class_id INT,
    classroom VARCHAR(255),
    class_time TIME,
    FOREIGN KEY (class_id) REFERENCES Classes(class_id)
);

CREATE TABLE StudentClassAssociations (
    association_id INT PRIMARY KEY,
    student_id INT,
    class_id INT,
    FOREIGN KEY (student_id) REFERENCES Students(student_id),
    FOREIGN KEY (class_id) REFERENCES Classes(class_id)
);

Output

SELECT COUNT(*) 
FROM Teachers t
JOIN Classes c ON t.teacher_id = c.teacher_id
GROUP BY t.teacher_id
HAVING COUNT(c.class_id) = 1;

About

Generates SQL queries based on DB schema and English text by leveraging Llama3.2 in self-contained Colab Notebook.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published