Keep vector store when "enable AI search" is off

We are using the vector store that you’ve exposed through the API for us with our own tools, but want to turn off the beta “enable AI search” feature, we’re getting too many hallucinations in that UI and want to stop exposing our users to it.

However, when we turn it off, the vector store is also deleted, so we can no longer use it.

Can you please make it possible to keep the vector store around (and automatically update it when changes are published) without enabling the AI search front-end experience?

Hello @Dirk_Stoop!

Apologies for the late reply.

You can now hide the AI search by applying the following Custom HEAD tag:

<script>
  window.settings.apply({
    search: {
      hideAiSearch: true,
    }
  });
</script>

From the docs.