diff --git a/cloud-deployments/gcp/deployment/DEPLOY.md b/cloud-deployments/gcp/deployment/DEPLOY.md index c659f0d8fb..7e1ed73ee8 100644 --- a/cloud-deployments/gcp/deployment/DEPLOY.md +++ b/cloud-deployments/gcp/deployment/DEPLOY.md @@ -21,7 +21,7 @@ Open your terminal ``` - gcloud deployment-manager deployments create anything-llm-deployment --config gcp/deployment/gcp_deploy_anything_llm_with_env.yaml + gcloud deployment-manager deployments create anything-llm-deployment --config gcp/deployment/gcp_deploy_anything_llm.yaml ``` @@ -51,4 +51,4 @@ If you want to check the instances progress, navigate to [your deployed instance Once connected run `sudo tail -f /var/log/cloud-init-output.log` and wait for the file to conclude deployment of the docker image. -Additionally, your use of this deployment process means you are responsible for any costs of these GCP resources fully. \ No newline at end of file +Additionally, your use of this deployment process means you are responsible for any costs of these GCP resources fully. diff --git a/frontend/src/components/EmbeddingSelection/AzureAiOptions/index.jsx b/frontend/src/components/EmbeddingSelection/AzureAiOptions/index.jsx index ccba035db9..ce1b9261ba 100644 --- a/frontend/src/components/EmbeddingSelection/AzureAiOptions/index.jsx +++ b/frontend/src/components/EmbeddingSelection/AzureAiOptions/index.jsx @@ -9,7 +9,7 @@ export default function AzureAiOptions({ settings }) { {[ diff --git a/frontend/src/components/EmbeddingSelection/GenericOpenAiOptions/index.jsx b/frontend/src/components/EmbeddingSelection/GenericOpenAiOptions/index.jsx index 84ae4ab8b7..e1ee62192b 100644 --- a/frontend/src/components/EmbeddingSelection/GenericOpenAiOptions/index.jsx +++ b/frontend/src/components/EmbeddingSelection/GenericOpenAiOptions/index.jsx @@ -13,7 +13,7 @@ export default function GenericOpenAiEmbeddingOptions({ settings }) { e.target.blur()} @@ -63,7 +63,7 @@ export default function GenericOpenAiEmbeddingOptions({ settings }) { {showAdvancedControls ? "Hide" : "Show"} advanced settings {showAdvancedControls ? ( @@ -101,7 +101,7 @@ export default function GenericOpenAiEmbeddingOptions({ settings }) { e.target.blur()} diff --git a/frontend/src/components/EmbeddingSelection/LMStudioOptions/index.jsx b/frontend/src/components/EmbeddingSelection/LMStudioOptions/index.jsx index 4cf95168bd..1fdf39650c 100644 --- a/frontend/src/components/EmbeddingSelection/LMStudioOptions/index.jsx +++ b/frontend/src/components/EmbeddingSelection/LMStudioOptions/index.jsx @@ -38,7 +38,7 @@ export default function LMStudioEmbeddingOptions({ settings }) { {showAdvancedControls ? "Hide" : "Show"} Manual Endpoint Input {showAdvancedControls ? ( @@ -94,7 +94,7 @@ export default function LMStudioEmbeddingOptions({ settings }) { {["mistral-embed"].map((model) => { diff --git a/frontend/src/components/EmbeddingSelection/OllamaOptions/index.jsx b/frontend/src/components/EmbeddingSelection/OllamaOptions/index.jsx index 49a111c2a3..10c20b3fc4 100644 --- a/frontend/src/components/EmbeddingSelection/OllamaOptions/index.jsx +++ b/frontend/src/components/EmbeddingSelection/OllamaOptions/index.jsx @@ -41,7 +41,7 @@ export default function OllamaEmbeddingOptions({ settings }) { {showAdvancedControls ? "Hide" : "Show"} Manual Endpoint Input {showAdvancedControls ? ( @@ -97,7 +97,7 @@ export default function OllamaEmbeddingOptions({ settings }) { {[ diff --git a/frontend/src/components/EmbeddingSelection/VoyageAiOptions/index.jsx b/frontend/src/components/EmbeddingSelection/VoyageAiOptions/index.jsx index d16e456d3b..f65fccf72b 100644 --- a/frontend/src/components/EmbeddingSelection/VoyageAiOptions/index.jsx +++ b/frontend/src/components/EmbeddingSelection/VoyageAiOptions/index.jsx @@ -9,7 +9,7 @@ export default function VoyageAiOptions({ settings }) { {[ diff --git a/frontend/src/components/Footer/index.jsx b/frontend/src/components/Footer/index.jsx index 420f173f91..9248f1e258 100644 --- a/frontend/src/components/Footer/index.jsx +++ b/frontend/src/components/Footer/index.jsx @@ -15,6 +15,7 @@ import React, { useEffect, useState } from "react"; import SettingsButton from "../SettingsButton"; import { isMobile } from "react-device-detect"; import { Tooltip } from "react-tooltip"; +import { Link } from "react-router-dom"; export const MAX_ICONS = 3; export const ICON_COMPONENTS = { @@ -49,8 +50,8 @@ export default function Footer() {
- - +
- - +
- - +
{!isMobile && }
@@ -120,7 +121,7 @@ export default function Footer() { href={item.url} target="_blank" rel="noreferrer" - className="transition-all duration-300 p-2 rounded-full bg-theme-sidebar-footer-icon hover:bg-theme-sidebar-footer-icon-hover" + className="transition-all duration-300 flex w-fit h-fit p-2 p-2 rounded-full bg-theme-sidebar-footer-icon hover:bg-theme-sidebar-footer-icon-hover hover:border-slate-100" > {React.createElement( ICON_COMPONENTS?.[item.icon] ?? ICON_COMPONENTS.Info, diff --git a/frontend/src/components/LLMSelection/AnthropicAiOptions/index.jsx b/frontend/src/components/LLMSelection/AnthropicAiOptions/index.jsx index 2f42c57c5d..a745114f69 100644 --- a/frontend/src/components/LLMSelection/AnthropicAiOptions/index.jsx +++ b/frontend/src/components/LLMSelection/AnthropicAiOptions/index.jsx @@ -9,7 +9,7 @@ export default function AnthropicAiOptions({ settings }) { {[ "claude-instant-1.2", diff --git a/frontend/src/components/LLMSelection/ApiPieOptions/index.jsx b/frontend/src/components/LLMSelection/ApiPieOptions/index.jsx index 9799bf15d7..dd8162f40a 100644 --- a/frontend/src/components/LLMSelection/ApiPieOptions/index.jsx +++ b/frontend/src/components/LLMSelection/ApiPieOptions/index.jsx @@ -12,7 +12,7 @@ export default function ApiPieLLMOptions({ settings }) { diff --git a/frontend/src/components/LLMSelection/CohereAiOptions/index.jsx b/frontend/src/components/LLMSelection/CohereAiOptions/index.jsx index a871684740..a0bd333f47 100644 --- a/frontend/src/components/LLMSelection/CohereAiOptions/index.jsx +++ b/frontend/src/components/LLMSelection/CohereAiOptions/index.jsx @@ -9,7 +9,7 @@ export default function CohereAiOptions({ settings }) { {[ "command-r", diff --git a/frontend/src/components/LLMSelection/DeepSeekOptions/index.jsx b/frontend/src/components/LLMSelection/DeepSeekOptions/index.jsx index 66f402e697..ababd74f03 100644 --- a/frontend/src/components/LLMSelection/DeepSeekOptions/index.jsx +++ b/frontend/src/components/LLMSelection/DeepSeekOptions/index.jsx @@ -16,7 +16,7 @@ export default function DeepSeekOptions({ settings }) { @@ -153,7 +153,7 @@ export default function OllamaLLMOptions({ settings }) {
@@ -305,7 +305,7 @@ export default function MultiUserAuth() { name="username" type="text" placeholder={t("login.multi-user.placeholder-username")} - className="bg-theme-settings-input-bg text-theme-text-primary placeholder:text-theme-settings-input-placeholder focus:outline-primary-button active:outline-primary-button outline-none text-sm rounded-md p-2.5 w-full h-[48px] md:w-[300px] md:h-[34px]" + className="border-none bg-theme-settings-input-bg text-theme-text-primary placeholder:text-theme-settings-input-placeholder focus:outline-primary-button active:outline-primary-button outline-none text-sm rounded-md p-2.5 w-full h-[48px] md:w-[300px] md:h-[34px]" required={true} autoComplete="off" /> @@ -315,7 +315,7 @@ export default function MultiUserAuth() { name="password" type="password" placeholder={t("login.multi-user.placeholder-password")} - className="bg-theme-settings-input-bg text-theme-text-primary placeholder:text-theme-settings-input-placeholder focus:outline-primary-button active:outline-primary-button outline-none text-sm rounded-md p-2.5 w-full h-[48px] md:w-[300px] md:h-[34px]" + className="border-none bg-theme-settings-input-bg text-theme-text-primary placeholder:text-theme-settings-input-placeholder focus:outline-primary-button active:outline-primary-button outline-none text-sm rounded-md p-2.5 w-full h-[48px] md:w-[300px] md:h-[34px]" required={true} autoComplete="off" /> diff --git a/frontend/src/components/Modals/Password/SingleUserAuth.jsx b/frontend/src/components/Modals/Password/SingleUserAuth.jsx index a645dcf7be..06e3d783c6 100644 --- a/frontend/src/components/Modals/Password/SingleUserAuth.jsx +++ b/frontend/src/components/Modals/Password/SingleUserAuth.jsx @@ -94,7 +94,7 @@ export default function SingleUserAuth() { name="password" type="password" placeholder="Password" - className="bg-theme-settings-input-bg text-theme-text-primary placeholder:text-theme-settings-input-placeholder focus:outline-primary-button active:outline-primary-button outline-none text-sm rounded-md p-2.5 w-full h-[48px] md:w-[300px] md:h-[34px]" + className="border-none bg-theme-settings-input-bg text-theme-text-primary placeholder:text-theme-settings-input-placeholder focus:outline-primary-button active:outline-primary-button outline-none text-sm rounded-md p-2.5 w-full h-[48px] md:w-[300px] md:h-[34px]" required={true} autoComplete="off" /> diff --git a/frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/index.jsx b/frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/index.jsx index 3f7243c9a3..157e6623e8 100644 --- a/frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/index.jsx +++ b/frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/index.jsx @@ -212,7 +212,7 @@ function DeleteAllThreadButton({ ctrlPressed, threads, onDelete }) { className="w-full relative flex h-[40px] items-center border-none hover:bg-red-400/20 rounded-lg group" >
-
+
@@ -101,7 +101,7 @@ export default function ActiveWorkspaces() { setSelectedWs(workspace); showModal(); }} - className="rounded-md flex items-center justify-center ml-auto p-[2px] hover:bg-[#646768] text-[#A7A8A9] hover:text-white" + className="border-none rounded-md flex items-center justify-center ml-auto p-[2px] hover:bg-[#646768] text-[#A7A8A9] hover:text-white" >
@@ -41,7 +41,7 @@ export default function ChromaDBOptions({ settings }) { autoComplete="off" type="password" defaultValue={settings?.ChromaApiKey ? "*".repeat(20) : ""} - className="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" + 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="sk-myApiKeyToAccessMyChromaInstance" />
diff --git a/frontend/src/components/VectorDBSelection/MilvusDBOptions/index.jsx b/frontend/src/components/VectorDBSelection/MilvusDBOptions/index.jsx index 5ee58612ef..cc30868dcc 100644 --- a/frontend/src/components/VectorDBSelection/MilvusDBOptions/index.jsx +++ b/frontend/src/components/VectorDBSelection/MilvusDBOptions/index.jsx @@ -9,7 +9,7 @@ export default function MilvusDBOptions({ settings }) {
@@ -101,7 +101,7 @@ export default function AddPresetModal({ isOpen, onClose, onSave }) { maxLength={80} autoComplete="off" required={true} - className="bg-theme-settings-input-bg w-full 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" + className="border-none bg-theme-settings-input-bg w-full 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" />
diff --git a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/SlashPresets/EditPresetModal.jsx b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/SlashPresets/EditPresetModal.jsx index 6715cbe20b..3d661022a9 100644 --- a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/SlashPresets/EditPresetModal.jsx +++ b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/SlashPresets/EditPresetModal.jsx @@ -85,7 +85,7 @@ export default function EditPresetModal({ value={command} onChange={handleCommandChange} required={true} - className="bg-theme-settings-input-bg w-full 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" + className="border-none bg-theme-settings-input-bg w-full 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" /> @@ -101,7 +101,7 @@ export default function EditPresetModal({ placeholder="This is a test prompt. Please respond with a poem about LLMs." defaultValue={preset.prompt} required={true} - className="bg-theme-settings-input-bg w-full 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" + className="border-none bg-theme-settings-input-bg w-full 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" >
@@ -117,7 +117,7 @@ export default function EditPresetModal({ defaultValue={preset.description} placeholder="Responds with a poem about LLMs." required={true} - className="bg-theme-settings-input-bg w-full 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" + className="border-none bg-theme-settings-input-bg w-full 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" />
diff --git a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/SlashPresets/index.jsx b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/SlashPresets/index.jsx index c8c493577c..ec42050a28 100644 --- a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/SlashPresets/index.jsx +++ b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/SlashPresets/index.jsx @@ -85,7 +85,7 @@ export default function SlashPresets({ setShowing, sendCommand }) { setShowing(false); sendCommand(`${preset.command} `, false); }} - className="w-full hover:cursor-pointer hover:bg-theme-action-menu-item-hover px-2 py-2 rounded-xl flex flex-row justify-start" + className="border-none w-full hover:cursor-pointer hover:bg-theme-action-menu-item-hover px-2 py-2 rounded-xl flex flex-row justify-start" >
@@ -108,7 +108,7 @@ export default function SlashPresets({ setShowing, sendCommand }) { ))}