PulseAugur
EN
LIVE 21:40:56

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

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 →

AI-generated summary · Google Gemini · from 1 sources. How we write summaries →

COVERAGE [1]

  1. dev.to — LLM tag TIER_1 English(EN) · 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…