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
Given a prompt, extrapolate as many relationships as possible from it and provide a list of updates.
If an update is a relationship, provide [ENTITY 1, RELATIONSHIP, ENTITY 2]. The relationship is directed, so the order matters.
If an update is related to a color, provide [ENTITY, COLOR]. Color is in hex format.
If an update is related to deleting an entity, provide ["DELETE", ENTITY].
Example:
prompt: Alice is Bob's roommate. Make her node green.
updates:
[["Alice", "roommate", "Bob"], ["Alice", "#00FF00"]]
prompt:
I can also get the response from other model like ChatGPT/GPT 3. So, is there anyway that allows me put the response like,
As GraphGPT works like make a request to GPT 3
I can also get the response from other model like ChatGPT/GPT 3. So, is there anyway that allows me put the response like,
Into react-graph-vis, so, I can get the same graph anyhow?
The text was updated successfully, but these errors were encountered: