KruxAI / ragbuilder

A toolkit to create optimal Production-ready RAG setup for your data
https://docs.ragbuilder.io
Apache License 2.0
1.04k stars 93 forks source link

GraphRAG - vector search #57

Open jexp opened 6 days ago

jexp commented 6 days ago

Thanks for adding GraphRAG to RAGbuilder.

I had some questions and suggestions, perhaps you want to chat some time.

        def full_retriever(question: str):
            graph_data = graph_retriever(question)
            vector_data = [el.page_content for el in vector_retriever.invoke(question)]
            final_data = f'''Graph data:
        {graph_data}
            '''
            return final_data

We have documented more GraphRAG patterns, here just in case you want to share your RAG patterns to the catalogue or provide some feedback:

aravind10x commented 4 days ago

Hi @jexp, thanks for your questions & thoughts!

@ashwinzyx - perhaps, you can take a look once you're back.