Skip to main content

Interactive CLI DB AI Agent for natural language to SQL conversion

Project description

SQ3M - AI-Powered Database Query Assistant

A Python CLI tool that converts natural language queries into SQL using Large Language Models (LLM). Built with Clean Architecture principles.

๐Ÿš€ Features

  • ๐Ÿค– Natural language to SQL conversion using OpenAI completion models
  • ๐Ÿ—„๏ธ Multi-database support for MySQL and PostgreSQL
  • ๐Ÿง  Automatic table purpose inference using LLM
  • ๐ŸŽจ Beautiful CLI interface with Rich
  • โš™๏ธ Environment variable configuration
  • ๐Ÿ—๏ธ Clean Architecture design

๐Ÿ“ฆ Installation

Using pip

pip install sq3m

Using uv (recommended for development)

# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh

# Clone the repository and setup
git clone https://github.com/leegyurak/sq3m.git
cd sq3m
uv sync

โš™๏ธ Configuration

Set up your environment variables in a .env file or export them:

# OpenAI Configuration
export OPENAI_API_KEY=your_openai_api_key
export OPENAI_MODEL=gpt-3.5-turbo  # Optional, defaults to gpt-3.5-turbo

# Database Configuration (Optional - can be set interactively)
export DB_TYPE=mysql  # mysql or postgresql
export DB_HOST=localhost
export DB_PORT=3306
export DB_NAME=your_database
export DB_USERNAME=your_username
export DB_PASSWORD=your_password

# Language Configuration (Optional)
export LANGUAGE=en  # en (English) or ko (Korean), defaults to en

๐ŸŒ Multi-language Support

sq3m supports multiple system prompt languages through the LANGUAGE environment variable:

  • Supported Languages:

    • en: English (default)
    • ko: Korean
  • Priority Order for System Prompts:

    1. Custom path parameter (directly specified)
    2. SYSTEM_PROMPT_PATH environment variable (absolute path)
    3. SYSTEM_PROMPT_FILE environment variable (filename in config directory)
    4. Language-specific default prompt (based on LANGUAGE environment variable)
    5. Default fallback prompt

Example Usage:

# Use Korean system prompts
export LANGUAGE=ko
sq3m

# Or set in .env file
echo "LANGUAGE=ko" >> .env

๐Ÿ”ง Usage

Run the CLI tool:

sq3m

The tool will guide you through:

  1. ๐Ÿค– LLM Setup: Configure OpenAI API key (if not in environment)
  2. ๐Ÿ—„๏ธ Database Connection: Set up database connection (interactive if not in environment)
  3. ๐Ÿ“Š Schema Analysis: Automatically analyze all tables and infer their purposes
  4. ๐Ÿ’ฌ Interactive Queries: Ask questions in natural language

๐Ÿ’ก Example Queries

  • "Show all users"
  • "Find orders from last month"
  • "Count products by category"
  • "Show user details for user ID 123"
  • "What are the top 5 selling products?"

๐ŸŽฏ CLI Commands

  • tables - Show all database tables and their purposes
  • help or h - Show available commands
  • quit, exit, or q - Exit the application

๐Ÿ—๏ธ Architecture

The project follows Clean Architecture principles:

sq3m/
โ”œโ”€โ”€ domain/           # Business logic and entities
โ”‚   โ”œโ”€โ”€ entities/     # Core business objects
โ”‚   โ””โ”€โ”€ interfaces/   # Abstract interfaces
โ”œโ”€โ”€ application/      # Use cases and business rules
โ”‚   โ”œโ”€โ”€ services/     # Application services
โ”‚   โ””โ”€โ”€ use_cases/    # Specific business use cases
โ”œโ”€โ”€ infrastructure/   # External interfaces
โ”‚   โ”œโ”€โ”€ database/     # Database implementations
โ”‚   โ”œโ”€โ”€ llm/          # LLM service implementations
โ”‚   โ””โ”€โ”€ prompts/      # System prompts
โ”œโ”€โ”€ interface/        # User interface
โ”‚   โ””โ”€โ”€ cli/          # CLI implementation
โ””โ”€โ”€ config/           # Configuration management

๐Ÿ› ๏ธ Development

Prerequisites

  • Python 3.10+
  • uv package manager (recommended for fast dependency management)

UV Package Manager Setup

This project uses uv for fast Python package management.

Install uv:

# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh

# Or with pip
pip install uv

Setup Development Environment

# Clone the repository
git clone https://github.com/leegyurak/sq3m.git
cd sq3m

# Initialize Python environment and install dependencies
uv sync --all-extras --dev

# Install pre-commit hooks
uv run pre-commit install

Activate Virtual Environment (optional):

# Linux/macOS
source .venv/bin/activate

# Windows
.venv\Scripts\activate

Development Workflow

  1. Make changes to the code
  2. Run tests: uv run pytest
  3. Run linting: uv run ruff check --fix .
  4. Run formatting: uv run ruff format .
  5. Run type checking: uv run mypy sq3m/
  6. Commit changes (pre-commit hooks will run automatically)

Running Tests

# Run all tests
uv run pytest

# Run unit tests only
uv run pytest tests/unit

# Run integration tests
uv run pytest tests/integration

# Run with coverage
uv run pytest --cov=sq3m

# Run tests excluding slow ones
uv run pytest -m "not slow"

Code Quality

# Linting and formatting with ruff
uv run ruff check --fix .
uv run ruff format .

# Type checking
uv run mypy sq3m/

# Pre-commit hooks (run automatically on commit)
uv run pre-commit run --all-files

Running the Application

# Run directly with uv
uv run sq3m

# Or activate environment first
source .venv/bin/activate
sq3m

๐Ÿ“š Dependencies

Runtime Dependencies

  • click: CLI framework
  • rich: Beautiful terminal UI
  • openai: OpenAI API client
  • python-dotenv: Environment variable management
  • psycopg2-binary: PostgreSQL driver
  • pymysql: MySQL driver
  • sqlparse: SQL parsing utilities
  • pydantic: Data validation

Development Dependencies

  • pytest: Testing framework
  • pytest-cov: Coverage reporting
  • pytest-asyncio: Async testing support
  • ruff: Fast Python linter and formatter
  • pre-commit: Git hooks framework
  • mypy: Static type checker

๐Ÿ“‹ Requirements

  • Python: 3.10 or higher
  • uv: Package manager (recommended) or pip

๐Ÿค Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

๐Ÿ“ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments

  • Thanks to OpenAI for providing the completion models
  • Built with modern Python tools: uv, ruff, pytest
  • Inspired by Clean Architecture principles

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sq3m-0.1.0.tar.gz (140.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sq3m-0.1.0-py3-none-any.whl (55.3 kB view details)

Uploaded Python 3

File details

Details for the file sq3m-0.1.0.tar.gz.

File metadata

  • Download URL: sq3m-0.1.0.tar.gz
  • Upload date:
  • Size: 140.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sq3m-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1b7435a9f65daf0e9dde64ee385a13b84730ed851ccd6567d6aa3f19a2b0ab6e
MD5 1d85c8b3833db63eaf4a1db81f734eed
BLAKE2b-256 af71bd254f6dd62571b01fd421f9626d98beb54eca65608bf633db677291916f

See more details on using hashes here.

File details

Details for the file sq3m-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: sq3m-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 55.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sq3m-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 aa48641a38ce03a451ef7b231aab0ea44cb0f05d3396acb2c3e9c9c1a3154655
MD5 3f6cb077ea56f23d68687442d325f942
BLAKE2b-256 2553bb1331a4d49cf582a6ff4f1f0107b114035b79b54aa31ac520a715c53474

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page