research-workflow / app
Production Agentic RAG Course Reference
Capability: Production Agentic RAG Course Reference
Use it when
- You want a self-hosted research assistant that automatically fetches and parses new arXiv papers daily and answers questions about them through a chat UI or Telegram bot
- You need a worked, end-to-end reference stack for production RAG (FastAPI, PostgreSQL, OpenSearch BM25 plus vector hybrid search, Airflow ingestion, Ollama, Redis caching, Langfuse tracing, LangGraph agents) with tagged per-stage releases to build from
What it solves
Not the fit when
- Turnkey production deployment without reading the accompanying weekly material
- Corpora other than arXiv without adapting the ingestion pipeline
- Machines under 8GB RAM or without Docker
- doc-cloud-upload-risk
- no-cross-session-recall
- context-window-overflow
Install
git clone https://github.com/jamwithai/production-agentic-rag-course && cd production-agentic-rag-course && cp .env.example .env && uv sync && docker compose up --build -d; optionally check out a tagged weekly release before installation
Invoke
Verify with curl http://localhost:8000/api/v1/health, then chat in the Gradio interface at http://localhost:7861 (uv run python gradio_launcher.py) or call POST /api/v1/ask and /api/v1/hybrid-search; Airflow at :8080 runs daily arXiv ingestion and Langfuse at :3000 traces the pipeline
Alternatives
No reviewed alternatives recorded yet.