{"id":50915059,"url":"https://github.com/wdopen-nk/rag-ai-agent","last_synced_at":"2026-06-16T14:01:32.606Z","repository":{"id":354197637,"uuid":"1207293397","full_name":"wdopen-nk/rag-ai-agent","owner":"wdopen-nk","description":"A scalable Retrieval-Augmented Generation (RAG) AI agent powered by Qdrant vector search, OpenAI, and FastAPI — featuring async workflows with Inngest and an interactive Streamlit UI.","archived":false,"fork":false,"pushed_at":"2026-04-27T14:17:47.000Z","size":176,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-27T16:16:05.583Z","etag":null,"topics":["fastapi","inngest","openai","openai-api","qdrant","qdrant-vector-database","streamlit"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wdopen-nk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-10T19:31:43.000Z","updated_at":"2026-04-27T14:20:24.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/wdopen-nk/rag-ai-agent","commit_stats":null,"previous_names":["wdopen-nk/rag-ai-agent"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/wdopen-nk/rag-ai-agent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wdopen-nk%2Frag-ai-agent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wdopen-nk%2Frag-ai-agent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wdopen-nk%2Frag-ai-agent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wdopen-nk%2Frag-ai-agent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wdopen-nk","download_url":"https://codeload.github.com/wdopen-nk/rag-ai-agent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wdopen-nk%2Frag-ai-agent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34408788,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-16T02:00:06.860Z","response_time":126,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fastapi","inngest","openai","openai-api","qdrant","qdrant-vector-database","streamlit"],"created_at":"2026-06-16T14:01:31.645Z","updated_at":"2026-06-16T14:01:32.601Z","avatar_url":"https://github.com/wdopen-nk.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Retrieval-Augmented Generation (RAG) AI Agent\n\nA scalable Retrieval-Augmented Generation (RAG) AI system using LlamaIndex, Qdrant, and OpenAI to deliver context-aware responses.\n\n## Overview\n\n This project implements a Retrieval-Augmented Generation (RAG) pipeline that combines vector search with LLMs to provide accurate, grounded responses. It uses LlamaIndex for orchestration, Qdrant for vector storage, and OpenAI for response generation. The system is designed to be modular, scalable, and production-ready.\n\n## Features\n\n- Semantic search over custom PDFs\n- Context-aware AI responses\n- Fast API backend\n- Async workflows\n- Dockerized vector database\n- Interactive frontend UI\n\n## Architecture\n\n    User (Streamlit UI)\n            ↓\n    FastAPI Backend\n            ↓\n    LlamaIndex Query Engine\n            ↓\n    Qdrant Vector Search\n            ↓\n    OpenAI LLM\n            ↓\n    Response\n\n## Tech Stack\n\n| Layer          | Technology |\n| -------------  | ---------- |\n| RAG Framework  | LlamaIndex |\n| Backend        | FastAPI    |\n| Frontend       | Streamlit  |\n| Vector DB      | Qdrant     |\n| LLM            | OpenAI     |\n| Workflows      | Inngest    |\n| Infrastructure          | Docker     |\n\n## Getting started\n\n### Run the following commands in terminal of your favorite IDE :\n\n1. Clone the repository\n\n    - `git clone https://github.com/wdopen-nk/rag-ai-agent.git`\n    - `cd rag-ai-agent`\n\n2. Setup environment\n\n    - `uv init .`\n    - `uv add fastapi inngest llama-index-core llama-index-readers-file python-dotenv qdrant-client uvicorn streamlit openai`\n\n3. Start Qdrant (Docker)\n\n    - First, create a folder in the working directory named `qdrant_storage`\n\n    - `docker run -d --name qdrantRagDB -p 6333:6333 -v \"$(pwd)/qdrant_storage:/qdrant/storage\" qdrant/qdrant`\n\n    - Make sure that `Docker` is installed on your device before running the above command.\n\n4. Set environment variables\n\n    - Make sure `.env` file contains the actual key from your OpenAI LLM.\n\n5. Run the backend\n\n    - `uv run uvicorn main:app`\n    - `npx inngest-cli@latest dev -u http://127.0.0.1:8000/api/inngest --no-discovery` for connecting to the inngest server.\n    - Make sure that `Node.js` is installed on your device before runnig the above command.\n\n6. Run the frontend\n\n    - `uv run streamlit run streamlit_app.py`\n\n## License\n\nThis project is licensed under the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwdopen-nk%2Frag-ai-agent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwdopen-nk%2Frag-ai-agent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwdopen-nk%2Frag-ai-agent/lists"}