NiceDuckGames / Jovia

Backend stuff for Jovia the Godot AI framework.
2 stars 0 forks source link

Embed RAG fetched command sequences into reponse #1

Open corysabol opened 10 months ago

corysabol commented 10 months ago

The chat response should include a variable called COMMANDS: [] which is a list of the command sequences retrieved from the vector store.

This list may be empty, but the client expects it to be there.

{
  .. stuff ..,
  "data": {
    "variables": {
      .. other vars ..,
      "COMMANDS": []
    }
  }
}