← Back to list

rag-pipeline
by muhammad-anas35
⭐ 0🍴 0📅 Jan 16, 2026
SKILL.md
name: rag-pipeline description: Use when building Retrieval-Augmented Generation systems. Covers document chunking, embedding generation, vector indexing, semantic search, context building, and integration of retrieval with LLM completion for accurate Q&A on Physical AI textbook content.
RAG Pipeline Skill
Quick Start Workflow
When building or maintaining the RAG pipeline:
-
Content Ingestion (One-time setup)
- Read all Docusaurus markdown files from
/docs - Chunk text (800 chars, 200 overlap)
- Generate embeddings with OpenAI ada-002
- Upsert to Qdrant with metadata
- Read all Docusaurus markdown files from
-
Query Flow (Runtime)
- Receive user question
- Generate query embedding
- Search Qdrant (top 5 results, score >= 0.7)
- Build context from relevant chunks
- Pass to OpenAI GPT-4 with context
- Return answer + sources
-
Continuous Improvement
- Monitor search quality (are results relevant?)
- Adjust chunk size if needed
- Update score thresholds
- Add filters for specific chapters
Standard Architecture
User Question
↓
[Generate Embedding]
↓
[Search Qdrant]
↓
[Extract Top 5 Chunks]
↓
[Build Context String]
↓
[GPT-4 with Context]
↓
AI Answer + Sources
Key Parameters
- Chunk size: 800 characters
- Overlap: 200 characters
- Embedding model:
text-embedding-ada-002 - LLM model:
gpt-4orgpt-3.5-turbo - Search limit: 5 chunks
- Score threshold: 0.7
- Context window: ~3000 tokens max
Best Practices
For Physical AI textbook RAG:
- Preserve code blocks when chunking
- Include chapter/section in metadata
- Cite sources in responses
- Cache embeddings for popular queries
- Log all queries for analytics
- Handle "no results" gracefully
Knowledge Base
Detailed guides available:
- Chunking Strategies →
references/chunking.md - Ingestion Script →
references/ingestion-script.md - Query Pipeline →
references/query-pipeline.md - Context Building →
references/context-building.md - Error Handling →
references/error-handling.md
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon