|
|
|
|
|
by gavinray
8 hours ago
|
|
I work at a company with an LLM-adjacent tool. The best solution we could find for this problem was a combination of a Wiki + "Saved Programs" (executable scripts). When you ask a question, the system does a fuzzy Wiki search to see if any topic has relevant info. Wiki links serve as "graph edges" that form a Knowledge Graph. So lets say I ask "What products from the FOOBAR API sold least last month?" The agent would look up "FOOBAR API", and then write a script to call the "products" endpoint with a date range + SQL fetch from "sales" DB and do whatever it needs to do. If none of this info exists (URL to FOOBAR, location of "sales" data), the agent asks for more info and offers to update the wiki for future. |
|