How to add new data when I have embedded existing_graph #27387
Unanswered
Benny1991-lucky
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am using the Neo4jVector.from_existing_graph to create the node embedding.
existing_graph = Neo4jVector.from_existing_graph(
embedding=OpenAIEmbeddings(),
url=url,
username=username,
password=password,
index_name="person_index",
node_label="Person",
text_node_properties=["name", "location"],
embedding_node_property="embedding",
)
After that, I want to add new data to this Neo4jVector. How I can do? Delete the existing_graph and renew one?
Beta Was this translation helpful? Give feedback.
All reactions