PulseAugur
LIVE 03:08:27
tool · [1 source] ·

Developer builds private AI assistant for Git and project data

A developer built a private AI assistant to query their project management and Git history data using only local LLMs. The system leverages a Text-to-SQL approach, translating natural language questions into SQL queries executed against a local SQLite database. This method ensures all data remains on the user's machine, prioritizing privacy and avoiding cloud-based APIs. The assistant uses Ollama to run models like Qwen2.5-coder locally, with a system prompt that includes the database schema, sample values, and few-shot examples to guide the LLM in generating accurate SQL queries and summarizing results. AI

Summary written by gemini-2.5-flash-lite from 1 source. How we write summaries →

IMPACT Enables developers to build custom, private AI tools for managing structured data, reducing reliance on cloud services.

RANK_REASON The cluster describes a personal project building a tool using existing LLMs and technologies, rather than a new model release or significant industry event.

Read on dev.to — LLM tag →

COVERAGE [1]

  1. dev.to — LLM tag TIER_1 · Pouria Zandakbari ·

    I Built a Private AI Assistant That Queries My Git History and Project Management Data — Using Only Local LLMs

    <p><strong>No API keys. No cloud. All data stays on my machine.</strong></p> <h2> The Problem </h2> <p>As a web developer, I constantly need to answer questions like:</p> <ul> <li>"Who committed the most to our main repo this month?"</li> <li>"What files were changed for the last…