Has lightRAG integrated RAG-anything yet? #1734
Replies: 2 comments 1 reply
-
ah, you're spot on — LightRAG (out of the box) doesn’t support Office or image ingestion via GUI yet. RAG-anything adds those formats, but if the upload button doesn’t allow them, it means LightRAG hasn’t patched the UI + MIME routing logic. we actually solved this in our own stack, including full Excel / PDF / PNG support — and it even routes to correct agents based on file type. let me know if you want it. |
Beta Was this translation helpful? Give feedback.
-
sure thing! really glad to hear that — sounds like you’re exactly the kind of person we built this for. we tackled this by building a full MIME-aware ingestion layer (Excel, PDF, images, etc.) that attaches to any RAG frontend — it not only handles routing but also resolves the semantic filter issue you noticed (where file type affects downstream chunking & query response alignment). here’s the full MIT-licensed solution, with setup docs, patch guides, and live demos: specifically, the issues you're hitting are mapped as:
we also provide plug-in filters you can attach to LightRAG or any LangChain-style app to pre-verify, rewrite, and repair doc ingestion paths in real-time. let me know if you'd like a quick breakdown on how to patch LightRAG’s upload route directly — happy to help. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
When starting the LightRAG server using the docker-compose.yml from the lightRAG project and modifying environment variables in env.example, I encountered an issue where the graphical interface doesn't allow uploading images (e.g., jpg, png) or Excel files (xlsx, xls). However, RAG-anything permits uploading such image formats and office documents. Is this because lightRAG hasn't integrated RAG-anything yet?
Thank you for your attention!
Beta Was this translation helpful? Give feedback.
All reactions