Custom GPTs update answers

@hudaiban @eric8 @yosi

I think I figured out a way to do this as I was tired of reloading updated versions of documents. The process that is working for me is

  1. Build a basic FAST API backend (Python) that can ingest and store files of any type.
  2. Expose a GET route in the API with a parameter for a specific doc.
  3. Create an OpenAPI Schema for the API and use that in the Actions (not Knowledge) of the GPT
  4. Handle all refresh and monitoring of the knowledge sources in the API. This way the knowledge the GPT access is always fresh.

LMK if this works for you or you’d like further details.