
TaskFlow AI
A project and task platform where an AI agent — or your own voice — can create, assign and search tasks for you.
An end-to-end RAG system that turns a private document library into a chatbot with grounded, source-cited answers.

Built an end-to-end Retrieval-Augmented Generation (RAG) system in Python for querying a private document knowledge base. The system ingests structured Markdown documents, splits them into meaningful semantic chunks by heading, paragraph, list, table and code block, and converts each chunk into a 384-dimensional embedding stored in Qdrant with its source file, chunk number and heading path. A user's question is embedded and matched against the closest chunks, which are passed to a local Ollama/Gemma LLM to generate a grounded answer — with source transparency and multi-turn conversation history.
Core workflow: documents → semantic chunking → embeddings → Qdrant → semantic retrieval → local LLM → grounded answer. Built with Python, Sentence Transformers, Qdrant, Docker, Ollama and Gemma.
Generic chatbots either don't know a business's own documents, or make something up when they're unsure. The system needed to answer only from the real source material — and show where each answer came from.
Split documents into semantic chunks, embed them, and store them in a vector database. At query time, retrieve only the most relevant chunks and pass them to a local LLM — so answers are grounded in real content, not guesses.
Documents are split by heading, paragraph, list, table and code block — not a fixed character count — so each chunk stays meaningful on its own.
Every answer links back to the source file and heading it came from, so nothing is a black box.
Ollama and Gemma handle generation locally, so the knowledge base doesn't depend on sending data to a third-party API.

A project and task platform where an AI agent — or your own voice — can create, assign and search tasks for you.

An n8n workflow that reads, prioritizes and drafts replies to Gmail — with a human approving anything before it sends.

A cross-platform recruitment app connecting employers and job seekers, with AI CV matching that ranks the closest fit first.
Tell us about your idea — a free 30-minute call is the fastest way to scope it.