From bbc3676488f494281738b6e148f5e4d3e0629588 Mon Sep 17 00:00:00 2001 From: lvalics Date: Thu, 22 Feb 2024 13:11:18 +0000 Subject: [PATCH] We've recently enhanced our chat interface to display metadata values, such as the data source and web links, from our vector database when available. However, it's important to note that, as of now, there is no option to toggle this feature on or off. This means that whenever this metadata is available for newer database entries, it will be automatically displayed. Please be aware that older database records might not include this information due to the feature's recent implementation. --- dj_backend_server/CHANGELOG.MD | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dj_backend_server/CHANGELOG.MD b/dj_backend_server/CHANGELOG.MD index 035f04b9..06ae6754 100644 --- a/dj_backend_server/CHANGELOG.MD +++ b/dj_backend_server/CHANGELOG.MD @@ -1,3 +1,6 @@ +2.22.2024 +- We've recently enhanced our chat interface to display metadata values, such as the data source and web links, from our vector database when available. However, it's important to note that, as of now, there is no option to toggle this feature on or off. This means that whenever this metadata is available for newer database entries, it will be automatically displayed. Please be aware that older database records might not include this information due to the feature's recent implementation. + 2.20.2024 - Implemented functionality to delete a chatbot namespace from the vector database, along with all records associated with that chatbot, upon chatbot deletion. - The Directory Data Loader must be updated to include filename metadata to enable filtering. PR#138