Releases: icon-gaurav/pgchat
Releases · icon-gaurav/pgchat
Release list
pgchat v1.0.0 — Initial Release
What's New
First public release of pgchat — a CLI tool for chatting with your PostgreSQL database using LangChain and Ollama. This release establishes the core architecture: a single SQL execution gateway, startup-time schema caching, and file-based session memory.
Added
- Natural language querying against PostgreSQL via Ollama-backed LangChain agent
- Single SQL execution gateway (
execute_sql()indb.py) — all queries route through one function for consistency and auditability - Startup schema cache — table structures, columns, foreign keys, and stats are fetched once at initialization and injected into the system prompt for context-aware querying
/refresh-schemacommand for manual schema cache refresh mid-session- JSON file-based session memory for conversation continuity across runs
- MIT licensed
Install:
pip install pgchatFull Changelog: https://github.com/icon-gaurav/pgchat/commits/v1.0.0