You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve README visual layout with shields.io badges and polished headers
- Root README: reorganize badges into three logical rows (GitHub stats,
tech stack, resources); add Stars, Forks, Last Commit, Issues, and
PRs Welcome badges; standardize to style=flat with consistent colors
- project/README: replace plain header with centered div, descriptive
subtitle, matching badge row, and bold dot-separated nav links;
add left-alignment markers to all major tables
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: project/README.md
+26-16Lines changed: 26 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,21 @@
1
-
# Intro To Agentic RAG System Documentation
1
+
<divalign="center">
2
2
3
-
This codebase powers an **Agentic RAG Engine** leveraging the **LangGraph** framework. It natively supports **hierarchical indexing**, **hybrid semantic and keyword search**, and **pluggable LLM compatibility**.
3
+
# Agentic RAG — Project Documentation
4
4
5
+
**Full-stack Agentic RAG powered by LangGraph — modular, observable, and provider-agnostic.**
| Structured output |`QueryAnalysis` parsing in the rewrite step |
@@ -611,7 +621,7 @@ Once running, open `http://localhost:7860`.
611
621
## Troubleshooting
612
622
613
623
| Issue | Cause | Solution |
614
-
|-------|-------|----------|
624
+
|:------|:------|:---------|
615
625
|"Model not found" error | Incorrect model name for provider | Verify `LLM_MODEL` matches provider's API (e.g., `gpt-4o-mini` not `gpt4-mini`) |
616
626
| Low-quality retrieval results | Poor embedding model or chunk configuration | Re-index with better embeddings (e.g., all-mpnet-base-v2) or adjust chunk sizes |
617
627
| Slow response times | Large embedding model or high `top_k` value | Use smaller embedding models (e.g., all-MiniLM-L6-v2) or reduce `top_k` in retrieval tools |
0 commit comments