A modular agentic reasoning engine for structured data, including NLQ-to-SQL transformations.
Project description
SQLThought
SQLThought exists to simplify how people work with structured data. Many users know the questions they want to ask, but writing correct SQL or debugging failures is slow and technical. Traditional NLQ systems jump directly from text to SQL, which often leads to invalid queries and no clear reasoning.
SQLThought takes a different approach. It breaks the problem into steps, understands the schema, plans the query, generates SQL, executes it, and fixes errors automatically. It also provides an easy way to build a SQLite database from CSV files so users can start querying without external tools.
The current version includes a complete Groq powered NLQ to SQL pipeline, correction loop, local configuration, and workspace tools. The framework is designed to grow into a broader reasoning engine for structured data and analytical workflows.
Key Features
Multi-Agent Reasoning
SQLThought uses LangGraph to orchestrate intelligent pipelines with:
- Stepwise decomposition
- State-aware execution
- Deterministic branches
- Automatic SQL correction loops
- Fully transparent, debuggable agent workflows
Groq-Powered LLM Execution
Fast agentic reasoning using Groq’s API, providing:
- Low-latency inference
- Predictable outputs
- Easy model switching
- Secure local configuration
Modular, Extensible Architecture
Every reasoning stage is isolated and replaceable.
Zero-Friction CLI
SQLThought includes a full command-line interface:
sqlthought configure— Configure Groq API + modelsqlthought query— Query your database using natural languagesqlthought version— Show installed versionsqlthought build-db— Build a SQLite database from CSV files
Secure Local Config Storage
~/.sqlthought/config.json
Stores API keys and model preferences locally (never uploaded or logged).
Project Structure
sqlthought/
├── nlq/
│ ├── conversion.py # Public NLQ→SQL API
│ ├── build_graph.py # LangGraph pipeline
│ ├── nodes.py # Multi-agent reasoning nodes
│ ├── state.py # Typed pipeline state
│ └── prompts/ # Prompt templates
├── ingestion/
│ └── build_db.py # CSV → SQLite builder
├── utils/
│ ├── db_utils.py
│ ├── logger.py
│ └── visualizer.py
└── cli.py # Command-line entrypoint
Installation
pip install sqlthought
Usage
First-Time Setup
sqlthought configure
You will be prompted for:
- Groq API key
- Model name (e.g., openai/gpt-oss-20b or another Groq-hosted model)
Configuration only needs to be done once.
Building Databases from CSV Files
- SQLThought ships with a helper for assembling SQLite databases from CSVs.
sqlthought init
- Upload CSV files into:
sqlthought_data/csv/
- Then build the database:
sqlthought build-db sample.db
- Your DB will be created at:
sqlthought_data/sample.db
And is now ready for NLQ reasoning.
NLQ to SQL conversion
The first reasoning module shipped with SQLThought is a full NLQ → SQL agentic system with:
- Schema understanding
- Subtask decomposition
- Query planning
- SQL generation
- SQL execution
- Automatic correction loops
CLI Example
sqlthought query "List employees earning above 70000" sample.db
Contributing
Contributions, feature ideas, and pull requests are welcome! More documentation and developer guides will be added soon.
License
MIT License © 2025 Tiyasa Mukherjee
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sqlthought-1.0.1.tar.gz.
File metadata
- Download URL: sqlthought-1.0.1.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
635d9302ca071f21d469469df16682dde33999029c309b57896d1e3f27b36abc
|
|
| MD5 |
ece6132c88641cce453b43e3f2bd99fc
|
|
| BLAKE2b-256 |
f4fb29f473edf58865a1aeba61075de0cde2b21df91b87546287a38aa7dd12cd
|
File details
Details for the file sqlthought-1.0.1-py3-none-any.whl.
File metadata
- Download URL: sqlthought-1.0.1-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae1151bcdacd5bb665d021af3e5a55b30a1eacdddaaa03857e79d8ac7661bf07
|
|
| MD5 |
5d0ee50b0cda74c267e46f46c4a22961
|
|
| BLAKE2b-256 |
ea1f07dd6b563ea01b413463c4ac033433776ee4118abdb36bbd6997b99de225
|