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
asyncdefrun_kg_builder():
# 1. Build KG and Store in Neo4j Databasekg_builder=SimpleKGPipeline(
llm=ex_llm,
driver=neo4j_driver,
embedder=embedder,
from_pdf=False,
)
awaitkg_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.
The text was updated successfully, but these errors were encountered:
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.
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.
The text was updated successfully, but these errors were encountered: