mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
0dbdb8498a
Todo: - [x] Docs
50 lines
1.3 KiB
Python
50 lines
1.3 KiB
Python
from langchain.embeddings import OpenAIEmbeddings
|
|
from langchain.vectorstores import Neo4jVector
|
|
|
|
# Typical RAG retriever
|
|
|
|
typical_rag = Neo4jVector.from_existing_index(
|
|
OpenAIEmbeddings(), index_name="typical_rag"
|
|
)
|
|
|
|
# Parent retriever
|
|
|
|
parent_query = """
|
|
MATCH (node)<-[:HAS_CHILD]-(parent)
|
|
WITH parent, max(score) AS score // deduplicate parents
|
|
RETURN parent.text AS text, score, {} AS metadata LIMIT 1
|
|
"""
|
|
|
|
parent_vectorstore = Neo4jVector.from_existing_index(
|
|
OpenAIEmbeddings(),
|
|
index_name="parent_document",
|
|
retrieval_query=parent_query,
|
|
)
|
|
|
|
# Hypothetic questions retriever
|
|
|
|
hypothetic_question_query = """
|
|
MATCH (node)<-[:HAS_QUESTION]-(parent)
|
|
WITH parent, max(score) AS score // deduplicate parents
|
|
RETURN parent.text AS text, score, {} AS metadata
|
|
"""
|
|
|
|
hypothetic_question_vectorstore = Neo4jVector.from_existing_index(
|
|
OpenAIEmbeddings(),
|
|
index_name="hypothetical_questions",
|
|
retrieval_query=hypothetic_question_query,
|
|
)
|
|
# Summary retriever
|
|
|
|
summary_query = """
|
|
MATCH (node)<-[:HAS_SUMMARY]-(parent)
|
|
WITH parent, max(score) AS score // deduplicate parents
|
|
RETURN parent.text AS text, score, {} AS metadata
|
|
"""
|
|
|
|
summary_vectorstore = Neo4jVector.from_existing_index(
|
|
OpenAIEmbeddings(),
|
|
index_name="summary",
|
|
retrieval_query=summary_query,
|
|
)
|