From 99b6dedc8bf3064d87c150b27ae62b48c0f29370 Mon Sep 17 00:00:00 2001
From: Sean Hatfield <seanhatfield5@gmail.com>
Date: Tue, 31 Dec 2024 06:11:20 +0800
Subject: [PATCH] Fix typo in frontend for SearXNG agent setup (#2917)

fix typo in frontend for SearXNG agent setup
---
 .../WebSearchSelection/SearchProviderOptions/index.jsx       | 4 ++--
 server/storage/vector-cache/VECTOR_CACHE.md                  | 5 -----
 2 files changed, 2 insertions(+), 7 deletions(-)
 delete mode 100644 server/storage/vector-cache/VECTOR_CACHE.md

diff --git a/frontend/src/pages/Admin/Agents/WebSearchSelection/SearchProviderOptions/index.jsx b/frontend/src/pages/Admin/Agents/WebSearchSelection/SearchProviderOptions/index.jsx
index 956d167ec..645bfc1ec 100644
--- a/frontend/src/pages/Admin/Agents/WebSearchSelection/SearchProviderOptions/index.jsx
+++ b/frontend/src/pages/Admin/Agents/WebSearchSelection/SearchProviderOptions/index.jsx
@@ -265,13 +265,13 @@ export function SearXNGOptions({ settings }) {
     <div className="flex gap-x-4">
       <div className="flex flex-col w-60">
         <label className="text-white text-sm font-semibold block mb-3">
-          SearXNG API base URL
+          SearXNG API Base URL
         </label>
         <input
           type="url"
           name="env::AgentSearXNGApiUrl"
           className="border-none bg-theme-settings-input-bg text-white placeholder:text-theme-settings-input-placeholder text-sm rounded-lg focus:outline-primary-button active:outline-primary-button outline-none block w-full p-2.5"
-          placeholder="SearXNG API Key"
+          placeholder="SearXNG API Base URL"
           defaultValue={settings?.AgentSearXNGApiUrl}
           required={true}
           autoComplete="off"
diff --git a/server/storage/vector-cache/VECTOR_CACHE.md b/server/storage/vector-cache/VECTOR_CACHE.md
deleted file mode 100644
index 9a33a713c..000000000
--- a/server/storage/vector-cache/VECTOR_CACHE.md
+++ /dev/null
@@ -1,5 +0,0 @@
-### What is this folder?
-
-`vector-cache` is a running storage of JSON documents that you have already run embeddings on. This allows you to use the same large documents for multiple workspaces without having to pay to re-embed them each time you want to reference them across workspaces.
-
-This also allows you to reset entire workspaces back to their original state without having to pay for the embeddings again. Saving you tons of money for large documents that take a while to embed.
-- 
GitLab