Hi, has anyone tried to augment ChatGPT with a kno...
# 06-technical-discussion
h
Hi, has anyone tried to augment ChatGPT with a knowledge graph?
c
Been experimenting with this at a very basic level: I created an embedding index of node names in the graph, then do a similar search on an input to get a list of nodes. From there… I can do graph stuff, like find neighbors of nodes, etc
All that (relevant nodes/node neighbors) becomes context for the prompt
h
ah cool! Did you just use an open source knowledge graph like KBpedia?
c
Just built a really basic one using the networkx python lib, will take a look at KBpedia!
👍 1