Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question: How to embedding entities and relations, not only Chunk #290

Open
cwr31 opened this issue Mar 3, 2025 · 1 comment
Open

Question: How to embedding entities and relations, not only Chunk #290

cwr31 opened this issue Mar 3, 2025 · 1 comment

Comments

@cwr31
Copy link

cwr31 commented Mar 3, 2025

async def run_kg_builder():
    # 1. Build KG and Store in Neo4j Database
    kg_builder = SimpleKGPipeline(
        llm=ex_llm,
        driver=neo4j_driver,
        embedder=embedder,
        from_pdf=False,
    )
    await kg_builder.run_async(text='''Coffee can make you more alert and improve your concentration.''')

I use config above and then found that only Chunk node have property key named embedding, but entities(eg: Coffee) do not have, so those nodes will not show in verctor search.

Image

Image

@stellasia
Copy link
Contributor

Hi @cwr31 ,

You're right that only the Chunk's text get embedded during the process. If you want to embed other properties, you'll have to create a separate process for that.

__Entity__ nodes can still be used in retrieval though, using VectorCypherRetriever for instance. This webinar gives some example queries you can use (notebook).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants