repo
stringlengths
5
106
file_url
stringlengths
78
301
file_path
stringlengths
4
211
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:56:49
2026-01-05 02:23:25
truncated
bool
2 classes
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/VectorDatabase/DocumentSimilarityThreshold/index.jsx
frontend/src/pages/WorkspaceSettings/VectorDatabase/DocumentSimilarityThreshold/index.jsx
import { useTranslation } from "react-i18next"; export default function DocumentSimilarityThreshold({ workspace, setHasChanges, }) { const { t } = useTranslation(); return ( <div> <div className="flex flex-col"> <label htmlFor="name" className="block input-label"> {t("vector-workspa...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/VectorDatabase/ResetDatabase/index.jsx
frontend/src/pages/WorkspaceSettings/VectorDatabase/ResetDatabase/index.jsx
import { useState } from "react"; import Workspace from "@/models/workspace"; import showToast from "@/utils/toast"; import { useTranslation } from "react-i18next"; export default function ResetDatabase({ workspace }) { const [deleting, setDeleting] = useState(false); const { t } = useTranslation(); const resetV...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/VectorDatabase/VectorCount/index.jsx
frontend/src/pages/WorkspaceSettings/VectorDatabase/VectorCount/index.jsx
import PreLoader from "@/components/Preloader"; import System from "@/models/system"; import { useEffect, useState } from "react"; import { useTranslation } from "react-i18next"; export default function VectorCount({ reload, workspace }) { const [totalVectors, setTotalVectors] = useState(null); const { t } = useTr...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/AgentConfig/index.jsx
frontend/src/pages/WorkspaceSettings/AgentConfig/index.jsx
import System from "@/models/system"; import Workspace from "@/models/workspace"; import showToast from "@/utils/toast"; import { castToType } from "@/utils/types"; import { useEffect, useRef, useState } from "react"; import AgentLLMSelection from "./AgentLLMSelection"; import Admin from "@/models/admin"; import * as S...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/AgentConfig/AgentModelSelection/index.jsx
frontend/src/pages/WorkspaceSettings/AgentConfig/AgentModelSelection/index.jsx
import useGetProviderModels, { DISABLED_PROVIDERS, } from "@/hooks/useGetProvidersModels"; import paths from "@/utils/paths"; import { useTranslation } from "react-i18next"; import { Link, useParams } from "react-router-dom"; /** * These models do NOT support function calling * or do not support system prompts * ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx
frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx
import React, { useEffect, useRef, useState } from "react"; import AnythingLLMIcon from "@/media/logo/anything-llm-icon.png"; import AgentLLMItem from "./AgentLLMItem"; import { AVAILABLE_LLM_PROVIDERS } from "@/pages/GeneralSettings/LLMPreference"; import { CaretUpDown, Gauge, MagnifyingGlass, X } from "@phosphor-icon...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/AgentLLMItem/index.jsx
frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/AgentLLMItem/index.jsx
// This component differs from the main LLMItem in that it shows if a provider is // "ready for use" and if not - will then highjack the click handler to show a modal // of the provider options that must be saved to continue. import { createPortal } from "react-dom"; import ModalWrapper from "@/components/ModalWrapper"...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/Members/index.jsx
frontend/src/pages/WorkspaceSettings/Members/index.jsx
import ModalWrapper from "@/components/ModalWrapper"; import { useModal } from "@/hooks/useModal"; import Admin from "@/models/admin"; import { useEffect, useState } from "react"; import * as Skeleton from "react-loading-skeleton"; import AddMemberModal from "./AddMemberModal"; import WorkspaceMemberRow from "./Workspa...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/Members/AddMemberModal/index.jsx
frontend/src/pages/WorkspaceSettings/Members/AddMemberModal/index.jsx
import React, { useState } from "react"; import { MagnifyingGlass, X } from "@phosphor-icons/react"; import Admin from "@/models/admin"; import showToast from "@/utils/toast"; export default function AddMemberModal({ closeModal, workspace, users }) { const [searchTerm, setSearchTerm] = useState(""); const [selecte...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/Members/WorkspaceMemberRow/index.jsx
frontend/src/pages/WorkspaceSettings/Members/WorkspaceMemberRow/index.jsx
import { titleCase } from "text-case"; export default function WorkspaceMemberRow({ user }) { return ( <> <tr className="bg-transparent text-theme-text-primary text-sm font-medium"> <th scope="row" className="px-6 py-4 whitespace-nowrap"> {user.username} </th> <td classNam...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/GeneralAppearance/index.jsx
frontend/src/pages/WorkspaceSettings/GeneralAppearance/index.jsx
import Workspace from "@/models/workspace"; import { castToType } from "@/utils/types"; import showToast from "@/utils/toast"; import { useEffect, useRef, useState } from "react"; import WorkspaceName from "./WorkspaceName"; import SuggestedChatMessages from "./SuggestedChatMessages"; import DeleteWorkspace from "./Del...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/GeneralAppearance/SuggestedChatMessages/index.jsx
frontend/src/pages/WorkspaceSettings/GeneralAppearance/SuggestedChatMessages/index.jsx
import PreLoader from "@/components/Preloader"; import Workspace from "@/models/workspace"; import showToast from "@/utils/toast"; import { useEffect, useState } from "react"; import { Plus, X } from "@phosphor-icons/react"; import { useTranslation } from "react-i18next"; export default function SuggestedChatMessages(...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/GeneralAppearance/WorkspacePfp/index.jsx
frontend/src/pages/WorkspaceSettings/GeneralAppearance/WorkspacePfp/index.jsx
import Workspace from "@/models/workspace"; import showToast from "@/utils/toast"; import { Plus } from "@phosphor-icons/react"; import { useEffect, useState } from "react"; import { useTranslation } from "react-i18next"; export default function WorkspacePfp({ workspace, slug }) { const [pfp, setPfp] = useState(null...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/GeneralAppearance/WorkspaceName/index.jsx
frontend/src/pages/WorkspaceSettings/GeneralAppearance/WorkspaceName/index.jsx
import { useTranslation } from "react-i18next"; export default function WorkspaceName({ workspace, setHasChanges }) { const { t } = useTranslation(); return ( <div> <div className="flex flex-col"> <label htmlFor="name" className="block input-label"> {t("common.workspaces-name")} ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/GeneralAppearance/DeleteWorkspace/index.jsx
frontend/src/pages/WorkspaceSettings/GeneralAppearance/DeleteWorkspace/index.jsx
import { useState } from "react"; import { useParams } from "react-router-dom"; import Workspace from "@/models/workspace"; import paths from "@/utils/paths"; import { useTranslation } from "react-i18next"; import showToast from "@/utils/toast"; export default function DeleteWorkspace({ workspace }) { const { slug }...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/ChatSettings/index.jsx
frontend/src/pages/WorkspaceSettings/ChatSettings/index.jsx
import System from "@/models/system"; import Workspace from "@/models/workspace"; import showToast from "@/utils/toast"; import { castToType } from "@/utils/types"; import { useEffect, useRef, useState } from "react"; import ChatHistorySettings from "./ChatHistorySettings"; import ChatPromptSettings from "./ChatPromptS...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/ChatSettings/ChatHistorySettings/index.jsx
frontend/src/pages/WorkspaceSettings/ChatSettings/ChatHistorySettings/index.jsx
import { useTranslation } from "react-i18next"; export default function ChatHistorySettings({ workspace, setHasChanges }) { const { t } = useTranslation(); return ( <div> <div className="flex flex-col gap-y-1 mb-4"> <label htmlFor="name" className="block mb-2 input-label"> {t("chat.histo...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/ChatSettings/ChatModeSelection/index.jsx
frontend/src/pages/WorkspaceSettings/ChatSettings/ChatModeSelection/index.jsx
import { useState } from "react"; import { useTranslation } from "react-i18next"; export default function ChatModeSelection({ workspace, setHasChanges }) { const [chatMode, setChatMode] = useState(workspace?.chatMode || "chat"); const { t } = useTranslation(); return ( <div> <div className="flex flex-co...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/ChatSettings/ChatPromptSettings/index.jsx
frontend/src/pages/WorkspaceSettings/ChatSettings/ChatPromptSettings/index.jsx
import { useEffect, useState, useRef, Fragment } from "react"; import { getWorkspaceSystemPrompt } from "@/utils/chat"; import { useTranslation } from "react-i18next"; import SystemPromptVariable from "@/models/systemPromptVariable"; import Highlighter from "react-highlight-words"; import { Link, useSearchParams } from...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/ChatSettings/ChatPromptSettings/ChatPromptHistory/index.jsx
frontend/src/pages/WorkspaceSettings/ChatSettings/ChatPromptSettings/ChatPromptHistory/index.jsx
import { useEffect, useState, forwardRef } from "react"; import { useTranslation } from "react-i18next"; import { X } from "@phosphor-icons/react"; import PromptHistory from "@/models/promptHistory"; import PromptHistoryItem from "./PromptHistoryItem"; import * as Skeleton from "react-loading-skeleton"; import "react-l...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/ChatSettings/ChatPromptSettings/ChatPromptHistory/PromptHistoryItem/index.jsx
frontend/src/pages/WorkspaceSettings/ChatSettings/ChatPromptSettings/ChatPromptHistory/PromptHistoryItem/index.jsx
import { DotsThreeVertical } from "@phosphor-icons/react"; import { useRef, useState, useEffect } from "react"; import PromptHistory from "@/models/promptHistory"; import { useTranslation } from "react-i18next"; import moment from "moment"; import truncate from "truncate"; const MAX_PROMPT_LENGTH = 200; // chars expo...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/ChatSettings/ChatQueryRefusalResponse/index.jsx
frontend/src/pages/WorkspaceSettings/ChatSettings/ChatQueryRefusalResponse/index.jsx
import { chatQueryRefusalResponse } from "@/utils/chat"; import { useTranslation } from "react-i18next"; export default function ChatQueryRefusalResponse({ workspace, setHasChanges }) { const { t } = useTranslation(); return ( <div> <div className="flex flex-col"> <label htmlFor="name" className="...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/ChatSettings/ChatTemperatureSettings/index.jsx
frontend/src/pages/WorkspaceSettings/ChatSettings/ChatTemperatureSettings/index.jsx
import { useTranslation } from "react-i18next"; function recommendedSettings(provider = null) { switch (provider) { case "mistral": return { temp: 0 }; default: return { temp: 0.7 }; } } export default function ChatTemperatureSettings({ settings, workspace, setHasChanges, }) { const def...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/ChatSettings/WorkspaceLLMSelection/index.jsx
frontend/src/pages/WorkspaceSettings/ChatSettings/WorkspaceLLMSelection/index.jsx
import React, { useEffect, useRef, useState } from "react"; import AnythingLLMIcon from "@/media/logo/anything-llm-icon.png"; import WorkspaceLLMItem from "./WorkspaceLLMItem"; import { AVAILABLE_LLM_PROVIDERS } from "@/pages/GeneralSettings/LLMPreference"; import { CaretUpDown, MagnifyingGlass, X } from "@phosphor-ico...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/ChatSettings/WorkspaceLLMSelection/ChatModelSelection/index.jsx
frontend/src/pages/WorkspaceSettings/ChatSettings/WorkspaceLLMSelection/ChatModelSelection/index.jsx
import useGetProviderModels, { DISABLED_PROVIDERS, } from "@/hooks/useGetProvidersModels"; import { useTranslation } from "react-i18next"; export default function ChatModelSelection({ provider, workspace, setHasChanges, }) { const { defaultModels, customModels, loading } = useGetProviderModels(provider);...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/pages/WorkspaceSettings/ChatSettings/WorkspaceLLMSelection/WorkspaceLLMItem/index.jsx
frontend/src/pages/WorkspaceSettings/ChatSettings/WorkspaceLLMSelection/WorkspaceLLMItem/index.jsx
// This component differs from the main LLMItem in that it shows if a provider is // "ready for use" and if not - will then highjack the click handler to show a modal // of the provider options that must be saved to continue. import { createPortal } from "react-dom"; import ModalWrapper from "@/components/ModalWrapper"...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/Preloader.jsx
frontend/src/components/Preloader.jsx
export default function PreLoader({ size = "16" }) { return ( <div className={`h-${size} w-${size} animate-spin rounded-full border-4 border-solid border-primary border-t-transparent`} ></div> ); } export function FullScreenLoader() { return ( <div id="preloader" className="fixed le...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/UserMenu/index.jsx
frontend/src/components/UserMenu/index.jsx
import UserButton from "./UserButton"; export default function UserMenu({ children }) { return ( <div className="w-auto h-auto"> <UserButton /> {children} </div> ); }
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/UserMenu/AccountModal/index.jsx
frontend/src/components/UserMenu/AccountModal/index.jsx
import { useLanguageOptions } from "@/hooks/useLanguageOptions"; import usePfp from "@/hooks/usePfp"; import System from "@/models/system"; import Appearance from "@/models/appearance"; import { AUTH_USER } from "@/utils/constants"; import showToast from "@/utils/toast"; import { Info, Plus, X } from "@phosphor-icons/r...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/UserMenu/UserButton/index.jsx
frontend/src/components/UserMenu/UserButton/index.jsx
import useLoginMode from "@/hooks/useLoginMode"; import usePfp from "@/hooks/usePfp"; import useUser from "@/hooks/useUser"; import System from "@/models/system"; import paths from "@/utils/paths"; import { userFromStorage } from "@/utils/request"; import { Person } from "@phosphor-icons/react"; import { useEffect, use...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/OpenRouterOptions/index.jsx
frontend/src/components/LLMSelection/OpenRouterOptions/index.jsx
import System from "@/models/system"; import { CaretDown, CaretUp } from "@phosphor-icons/react"; import { useState, useEffect } from "react"; export default function OpenRouterOptions({ settings }) { return ( <div className="flex flex-col gap-y-4 mt-1.5"> <div className="flex gap-[36px]"> <div cla...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/DeepSeekOptions/index.jsx
frontend/src/components/LLMSelection/DeepSeekOptions/index.jsx
import { useState, useEffect } from "react"; import System from "@/models/system"; export default function DeepSeekOptions({ settings }) { const [inputValue, setInputValue] = useState(settings?.DeepSeekApiKey); const [deepSeekApiKey, setDeepSeekApiKey] = useState( settings?.DeepSeekApiKey ); return ( ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/ZAiLLMOptions/index.jsx
frontend/src/components/LLMSelection/ZAiLLMOptions/index.jsx
import { useState, useEffect } from "react"; import System from "@/models/system"; export default function ZAiLLMOptions({ settings }) { const [inputValue, setInputValue] = useState(settings?.ZAiApiKey); const [apiKey, setApiKey] = useState(settings?.ZAiApiKey); return ( <div className="flex gap-[36px] mt-1...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/TogetherAiOptions/index.jsx
frontend/src/components/LLMSelection/TogetherAiOptions/index.jsx
import System from "@/models/system"; import { useState, useEffect } from "react"; export default function TogetherAiOptions({ settings }) { const [inputValue, setInputValue] = useState(settings?.TogetherAiApiKey); const [apiKey, setApiKey] = useState(settings?.TogetherAiApiKey); return ( <div className="fl...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/GeminiLLMOptions/index.jsx
frontend/src/components/LLMSelection/GeminiLLMOptions/index.jsx
import System from "@/models/system"; import { useEffect, useState } from "react"; export default function GeminiLLMOptions({ settings }) { const [inputValue, setInputValue] = useState(settings?.GeminiLLMApiKey); const [geminiApiKey, setGeminiApiKey] = useState(settings?.GeminiLLMApiKey); return ( <div clas...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/HuggingFaceOptions/index.jsx
frontend/src/components/LLMSelection/HuggingFaceOptions/index.jsx
export default function HuggingFaceOptions({ settings }) { return ( <div className="w-full flex flex-col"> <div className="w-full flex items-center gap-[36px] mt-1.5"> <div className="flex flex-col w-60"> <label className="text-white text-sm font-semibold block mb-3"> HuggingFa...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/PPIOLLMOptions/index.jsx
frontend/src/components/LLMSelection/PPIOLLMOptions/index.jsx
import System from "@/models/system"; import { useState, useEffect } from "react"; export default function PPIOLLMOptions({ settings }) { return ( <div className="w-full flex flex-col gap-y-7"> <div className="w-full flex items-start gap-[36px] mt-1.5"> <div className="flex flex-col w-60"> ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/AwsBedrockLLMOptions/index.jsx
frontend/src/components/LLMSelection/AwsBedrockLLMOptions/index.jsx
import { ArrowSquareOut, Info } from "@phosphor-icons/react"; import { AWS_REGIONS } from "./regions"; import { useState } from "react"; export default function AwsBedrockLLMOptions({ settings }) { const [connectionMethod, setConnectionMethod] = useState( settings?.AwsBedrockLLMConnectionMethod ?? "iam" ); ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/AwsBedrockLLMOptions/regions.js
frontend/src/components/LLMSelection/AwsBedrockLLMOptions/regions.js
export const AWS_REGIONS = [ { name: "N. Virginia", full_name: "US East (N. Virginia)", code: "us-east-1", public: true, zones: [ "us-east-1a", "us-east-1b", "us-east-1c", "us-east-1d", "us-east-1e", "us-east-1f", ], }, { name: "Ohio", full_name:...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/ApiPieOptions/index.jsx
frontend/src/components/LLMSelection/ApiPieOptions/index.jsx
import System from "@/models/system"; import { useState, useEffect } from "react"; export default function ApiPieLLMOptions({ settings }) { return ( <div className="flex flex-col gap-y-4 mt-1.5"> <div className="flex gap-[36px]"> <div className="flex flex-col w-60"> <label className="text...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/LMStudioOptions/index.jsx
frontend/src/components/LLMSelection/LMStudioOptions/index.jsx
import { useEffect, useState } from "react"; import { Info, CaretDown, CaretUp } from "@phosphor-icons/react"; import paths from "@/utils/paths"; import System from "@/models/system"; import PreLoader from "@/components/Preloader"; import { LMSTUDIO_COMMON_URLS } from "@/utils/constants"; import useProviderEndpointAuto...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/NvidiaNimOptions/managed.jsx
frontend/src/components/LLMSelection/NvidiaNimOptions/managed.jsx
/** * This component is used to select, start, and manage NVIDIA NIM * containers and images via docker management tools. */ export default function ManagedNvidiaNimOptions({ settings }) { return null; }
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/NvidiaNimOptions/index.jsx
frontend/src/components/LLMSelection/NvidiaNimOptions/index.jsx
import RemoteNvidiaNimOptions from "./remote"; import ManagedNvidiaNimOptions from "./managed"; export default function NvidiaNimOptions({ settings }) { const version = "remote"; // static to "remote" when in docker version. return version === "remote" ? ( <RemoteNvidiaNimOptions settings={settings} /> ) : (...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/NvidiaNimOptions/remote.jsx
frontend/src/components/LLMSelection/NvidiaNimOptions/remote.jsx
import PreLoader from "@/components/Preloader"; import useProviderEndpointAutoDiscovery from "@/hooks/useProviderEndpointAutoDiscovery"; import System from "@/models/system"; import { NVIDIA_NIM_COMMON_URLS } from "@/utils/constants"; import { useState, useEffect } from "react"; /** * This component is used to select...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/PerplexityOptions/index.jsx
frontend/src/components/LLMSelection/PerplexityOptions/index.jsx
import System from "@/models/system"; import { useState, useEffect } from "react"; export default function PerplexityOptions({ settings }) { return ( <div className="flex gap-[36px] mt-1.5"> <div className="flex flex-col w-60"> <label className="text-white text-sm font-semibold block mb-3"> ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/GiteeAIOptions/index.jsx
frontend/src/components/LLMSelection/GiteeAIOptions/index.jsx
import { useState, useEffect } from "react"; import System from "@/models/system"; export default function GiteeAIOptions({ settings }) { return ( <div className="flex gap-[36px] mt-1.5"> <div className="flex flex-col w-60"> <label className="text-white text-sm font-semibold block mb-3"> ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/AnthropicAiOptions/index.jsx
frontend/src/components/LLMSelection/AnthropicAiOptions/index.jsx
import { useState, useEffect } from "react"; import System from "@/models/system"; import { CaretDown, CaretUp } from "@phosphor-icons/react"; export default function AnthropicAiOptions({ settings }) { const [showAdvancedControls, setShowAdvancedControls] = useState(false); const [inputValue, setInputValue] = useS...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/FireworksAiOptions/index.jsx
frontend/src/components/LLMSelection/FireworksAiOptions/index.jsx
import System from "@/models/system"; import { useState, useEffect } from "react"; export default function FireworksAiOptions({ settings }) { const [inputValue, setInputValue] = useState(settings?.FireworksAiLLMApiKey); const [fireworksAiApiKey, setFireworksAiApiKey] = useState( settings?.FireworksAiLLMApiKey ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/AzureAiOptions/index.jsx
frontend/src/components/LLMSelection/AzureAiOptions/index.jsx
import { Info } from "@phosphor-icons/react"; import { useTranslation } from "react-i18next"; import { Tooltip } from "react-tooltip"; export default function AzureAiOptions({ settings }) { const { t } = useTranslation(); return ( <div className="w-full flex flex-col gap-y-7 mt-1.5"> <div className="w-f...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/GroqAiOptions/index.jsx
frontend/src/components/LLMSelection/GroqAiOptions/index.jsx
import { useState, useEffect } from "react"; import System from "@/models/system"; export default function GroqAiOptions({ settings }) { const [inputValue, setInputValue] = useState(settings?.GroqApiKey); const [apiKey, setApiKey] = useState(settings?.GroqApiKey); return ( <div className="flex gap-[36px] mt...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/LocalAiOptions/index.jsx
frontend/src/components/LLMSelection/LocalAiOptions/index.jsx
import React, { useEffect, useState } from "react"; import { Info, CaretDown, CaretUp } from "@phosphor-icons/react"; import paths from "@/utils/paths"; import System from "@/models/system"; import PreLoader from "@/components/Preloader"; import { LOCALAI_COMMON_URLS } from "@/utils/constants"; import useProviderEndpoi...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/CometApiLLMOptions/index.jsx
frontend/src/components/LLMSelection/CometApiLLMOptions/index.jsx
import System from "@/models/system"; import { CaretDown, CaretUp } from "@phosphor-icons/react"; import { useState, useEffect } from "react"; export default function CometApiLLMOptions({ settings }) { return ( <div className="w-full flex flex-col gap-y-7"> <div className="w-full flex items-start gap-[36px...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/LiteLLMOptions/index.jsx
frontend/src/components/LLMSelection/LiteLLMOptions/index.jsx
import { useEffect, useState } from "react"; import System from "@/models/system"; export default function LiteLLMOptions({ settings }) { const [basePathValue, setBasePathValue] = useState(settings?.LiteLLMBasePath); const [basePath, setBasePath] = useState(settings?.LiteLLMBasePath); const [apiKeyValue, setApiK...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/LLMItem/index.jsx
frontend/src/components/LLMSelection/LLMItem/index.jsx
export default function LLMItem({ name, value, image, description, checked, onClick, }) { return ( <div onClick={() => onClick(value)} className={`w-full p-2 rounded-md hover:cursor-pointer hover:bg-theme-bg-secondary ${ checked ? "bg-theme-bg-secondary" : "" }`} > ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/GenericOpenAiOptions/index.jsx
frontend/src/components/LLMSelection/GenericOpenAiOptions/index.jsx
export default function GenericOpenAiOptions({ settings }) { return ( <div className="flex flex-col gap-y-7"> <div className="flex gap-[36px] mt-1.5 flex-wrap"> <div className="flex flex-col w-60"> <label className="text-white text-sm font-semibold block mb-3"> Base URL ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/FoundryOptions/index.jsx
frontend/src/components/LLMSelection/FoundryOptions/index.jsx
import { useEffect, useState } from "react"; import System from "@/models/system"; export default function FoundryOptions({ settings }) { const [models, setModels] = useState([]); const [loading, setLoading] = useState(!!settings?.FoundryBasePath); const [basePath, setBasePath] = useState(settings?.FoundryBasePa...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/TextGenWebUIOptions/index.jsx
frontend/src/components/LLMSelection/TextGenWebUIOptions/index.jsx
export default function TextGenWebUIOptions({ settings }) { return ( <div className="flex gap-[36px] mt-1.5 flex-wrap"> <div className="flex flex-col w-60"> <label className="text-white text-sm font-semibold block mb-3"> Base URL </label> <input type="url" ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/DPAISOptions/index.jsx
frontend/src/components/LLMSelection/DPAISOptions/index.jsx
import React, { useEffect, useState } from "react"; import { CaretDown, CaretUp } from "@phosphor-icons/react"; import System from "@/models/system"; import PreLoader from "@/components/Preloader"; import { DPAIS_COMMON_URLS } from "@/utils/constants"; import useProviderEndpointAutoDiscovery from "@/hooks/useProviderEn...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/NovitaLLMOptions/index.jsx
frontend/src/components/LLMSelection/NovitaLLMOptions/index.jsx
import System from "@/models/system"; import { CaretDown, CaretUp } from "@phosphor-icons/react"; import { useState, useEffect } from "react"; export default function NovitaLLMOptions({ settings }) { return ( <div className="w-full flex flex-col gap-y-7"> <div className="w-full flex items-start gap-[36px] ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/CohereAiOptions/index.jsx
frontend/src/components/LLMSelection/CohereAiOptions/index.jsx
import { useState, useEffect } from "react"; import System from "@/models/system"; export default function CohereAiOptions({ settings }) { const [inputValue, setInputValue] = useState(settings?.CohereApiKey); const [cohereApiKey, setCohereApiKey] = useState(settings?.CohereApiKey); return ( <div className="...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/LLMProviderOption/index.jsx
frontend/src/components/LLMSelection/LLMProviderOption/index.jsx
export default function LLMProviderOption({ name, link, description, value, image, checked = false, onClick, }) { return ( <div onClick={() => onClick(value)}> <input type="checkbox" value={value} className="peer hidden" checked={checked} readOnly={true}...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/MoonshotAiOptions/index.jsx
frontend/src/components/LLMSelection/MoonshotAiOptions/index.jsx
import { useState, useEffect } from "react"; import System from "@/models/system"; export default function MoonshotAiOptions({ settings }) { const [inputValue, setInputValue] = useState(settings?.MoonshotAiApiKey); const [moonshotAiKey, setMoonshotAiKey] = useState( settings?.MoonshotAiApiKey ); return ( ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/XAiLLMOptions/index.jsx
frontend/src/components/LLMSelection/XAiLLMOptions/index.jsx
import { useState, useEffect } from "react"; import System from "@/models/system"; export default function XAILLMOptions({ settings }) { const [inputValue, setInputValue] = useState(settings?.XAIApiKey); const [apiKey, setApiKey] = useState(settings?.XAIApiKey); return ( <div className="flex gap-[36px] mt-1...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/OpenAiOptions/index.jsx
frontend/src/components/LLMSelection/OpenAiOptions/index.jsx
import { useState, useEffect } from "react"; import System from "@/models/system"; export default function OpenAiOptions({ settings }) { const [inputValue, setInputValue] = useState(settings?.OpenAiKey); const [openAIKey, setOpenAIKey] = useState(settings?.OpenAiKey); return ( <div className="flex gap-[36px...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/OllamaLLMOptions/index.jsx
frontend/src/components/LLMSelection/OllamaLLMOptions/index.jsx
import React, { useEffect, useState } from "react"; import System from "@/models/system"; import PreLoader from "@/components/Preloader"; import { OLLAMA_COMMON_URLS } from "@/utils/constants"; import { CaretDown, CaretUp, Info } from "@phosphor-icons/react"; import useProviderEndpointAutoDiscovery from "@/hooks/usePro...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/MistralOptions/index.jsx
frontend/src/components/LLMSelection/MistralOptions/index.jsx
import { useState, useEffect } from "react"; import System from "@/models/system"; export default function MistralOptions({ settings }) { const [inputValue, setInputValue] = useState(settings?.MistralApiKey); const [mistralKey, setMistralKey] = useState(settings?.MistralApiKey); return ( <div className="fle...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/LLMSelection/KoboldCPPOptions/index.jsx
frontend/src/components/LLMSelection/KoboldCPPOptions/index.jsx
import { useEffect, useState } from "react"; import System from "@/models/system"; import PreLoader from "@/components/Preloader"; import { KOBOLDCPP_COMMON_URLS } from "@/utils/constants"; import { CaretDown, CaretUp } from "@phosphor-icons/react"; import useProviderEndpointAutoDiscovery from "@/hooks/useProviderEndpo...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/ModalWrapper/index.jsx
frontend/src/components/ModalWrapper/index.jsx
import { createPortal } from "react-dom"; /** * @typedef {Object} ModalWrapperProps * @property {import("react").ReactComponentElement} children - The DOM/JSX to render * @property {boolean} isOpen - Option that renders the modal * @property {boolean} noPortal - (default: false) Used for creating sub-DOM modals tha...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/TranscriptionSelection/NativeTranscriptionOptions/index.jsx
frontend/src/components/TranscriptionSelection/NativeTranscriptionOptions/index.jsx
import { useState } from "react"; import { useTranslation } from "react-i18next"; import { Gauge } from "@phosphor-icons/react"; export default function NativeTranscriptionOptions({ settings }) { const { t } = useTranslation(); const [model, setModel] = useState(settings?.WhisperModelPref); return ( <div cl...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/TranscriptionSelection/OpenAiOptions/index.jsx
frontend/src/components/TranscriptionSelection/OpenAiOptions/index.jsx
import { useState } from "react"; export default function OpenAiWhisperOptions({ settings }) { const [inputValue, setInputValue] = useState(settings?.OpenAiKey); const [_openAIKey, setOpenAIKey] = useState(settings?.OpenAiKey); return ( <div className="flex gap-x-7 gap-[36px] mt-1.5"> <div className="...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/CanViewChatHistory/index.jsx
frontend/src/components/CanViewChatHistory/index.jsx
import { useEffect, useState } from "react"; import { FullScreenLoader } from "@/components/Preloader"; import System from "@/models/system"; import paths from "@/utils/paths"; /** * Protects the view from system set ups who cannot view chat history. * If the user cannot view chat history, they are redirected to the...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/VectorDBSelection/LanceDBOptions/index.jsx
frontend/src/components/VectorDBSelection/LanceDBOptions/index.jsx
import { useTranslation } from "react-i18next"; export default function LanceDBOptions() { const { t } = useTranslation(); return ( <div className="w-full h-10 items-center flex"> <p className="text-sm font-base text-white text-opacity-60"> {t("vector.provider.description")} </p> </div> ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/VectorDBSelection/PineconeDBOptions/index.jsx
frontend/src/components/VectorDBSelection/PineconeDBOptions/index.jsx
export default function PineconeDBOptions({ settings }) { return ( <div className="w-full flex flex-col gap-y-7"> <div className="w-full flex items-center gap-[36px] mt-1.5"> <div className="flex flex-col w-60"> <label className="text-white text-sm font-semibold block mb-3"> Pi...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/VectorDBSelection/ZillizCloudOptions/index.jsx
frontend/src/components/VectorDBSelection/ZillizCloudOptions/index.jsx
export default function ZillizCloudOptions({ settings }) { return ( <div className="w-full flex flex-col gap-y-4"> <div className="w-full flex items-center gap-[36px] mt-1.5"> <div className="flex flex-col w-60"> <label className="text-white text-sm font-semibold block mb-3"> C...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/VectorDBSelection/VectorDBItem/index.jsx
frontend/src/components/VectorDBSelection/VectorDBItem/index.jsx
export default function VectorDBItem({ name, value, image, description, checked, onClick, }) { return ( <div onClick={() => onClick(value)} className={`w-full p-2 rounded-md hover:cursor-pointer hover:bg-theme-bg-secondary ${ checked ? "bg-theme-bg-secondary" : "" }`} > ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/VectorDBSelection/ChromaDBOptions/index.jsx
frontend/src/components/VectorDBSelection/ChromaDBOptions/index.jsx
export default function ChromaDBOptions({ settings }) { return ( <div className="w-full flex flex-col gap-y-7"> <div className="w-full flex items-center gap-[36px] mt-1.5"> <div className="flex flex-col w-60"> <label className="text-white text-sm font-semibold block mb-3"> Chro...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/VectorDBSelection/WeaviateDBOptions/index.jsx
frontend/src/components/VectorDBSelection/WeaviateDBOptions/index.jsx
export default function WeaviateDBOptions({ settings }) { return ( <div className="w-full flex flex-col gap-y-7"> <div className="w-full flex items-center gap-[36px] mt-1.5"> <div className="flex flex-col w-60"> <label className="text-white text-sm font-semibold block mb-3"> We...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/VectorDBSelection/ChromaCloudOptions/index.jsx
frontend/src/components/VectorDBSelection/ChromaCloudOptions/index.jsx
export default function ChromaCloudOptions({ settings }) { return ( <div className="w-full flex flex-col gap-y-7"> <div className="w-full flex items-center gap-[36px] mt-1.5"> <div className="flex flex-col w-60"> <label className="text-white text-sm font-semibold block mb-3"> A...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/VectorDBSelection/AstraDBOptions/index.jsx
frontend/src/components/VectorDBSelection/AstraDBOptions/index.jsx
export default function AstraDBOptions({ settings }) { return ( <div className="w-full flex flex-col gap-y-7"> <div className="w-full flex items-center gap-[36px] mt-1.5"> <div className="flex flex-col w-60"> <label className="text-white text-sm font-semibold block mb-3"> Astra...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/VectorDBSelection/PGVectorOptions/index.jsx
frontend/src/components/VectorDBSelection/PGVectorOptions/index.jsx
import { Info } from "@phosphor-icons/react"; import { Tooltip } from "react-tooltip"; export default function PGVectorOptions({ settings }) { return ( <div className="w-full flex flex-col gap-y-7"> <div className="w-full flex items-center gap-[36px] mt-1.5"> <div className="flex flex-col w-96"> ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/VectorDBSelection/QDrantDBOptions/index.jsx
frontend/src/components/VectorDBSelection/QDrantDBOptions/index.jsx
export default function QDrantDBOptions({ settings }) { return ( <div className="w-full flex flex-col gap-y-7"> <div className="w-full flex items-center gap-[36px] mt-1.5"> <div className="flex flex-col w-60"> <label className="text-white text-sm font-semibold block mb-3"> QDra...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/VectorDBSelection/MilvusDBOptions/index.jsx
frontend/src/components/VectorDBSelection/MilvusDBOptions/index.jsx
export default function MilvusDBOptions({ settings }) { return ( <div className="w-full flex flex-col gap-y-7"> <div className="w-full flex items-center gap-[36px] mt-1.5"> <div className="flex flex-col w-60"> <label className="text-white text-sm font-semibold block mb-3"> Milv...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/DefaultChat/index.jsx
frontend/src/components/DefaultChat/index.jsx
import React, { useEffect, useState } from "react"; import paths from "@/utils/paths"; import { isMobile } from "react-device-detect"; import useUser from "@/hooks/useUser"; import Appearance from "@/models/appearance"; import useLogo from "@/hooks/useLogo"; import Workspace from "@/models/workspace"; import { NavLink ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/PrivateRoute/index.jsx
frontend/src/components/PrivateRoute/index.jsx
import { useEffect, useState } from "react"; import { Navigate } from "react-router-dom"; import { FullScreenLoader } from "../Preloader"; import validateSessionTokenForUser from "@/utils/session"; import paths from "@/utils/paths"; import { AUTH_TIMESTAMP, AUTH_TOKEN, AUTH_USER } from "@/utils/constants"; import { use...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/UserIcon/index.jsx
frontend/src/components/UserIcon/index.jsx
import React, { memo } from "react"; import usePfp from "../../hooks/usePfp"; import UserDefaultPfp from "./user.svg"; import WorkspaceDefaultPfp from "./workspace.svg"; const UserIcon = memo(({ role }) => { const { pfp } = usePfp(); return ( <div className="relative w-[35px] h-[35px] rounded-full flex-shrink...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/KeyboardShortcutsHelp/index.jsx
frontend/src/components/KeyboardShortcutsHelp/index.jsx
import React, { useEffect, useState } from "react"; import { X } from "@phosphor-icons/react"; import { useTranslation } from "react-i18next"; import { SHORTCUTS, isMac, KEYBOARD_SHORTCUTS_HELP_EVENT, } from "@/utils/keyboardShortcuts"; export default function KeyboardShortcutsHelp() { const [isOpen, setIsOpen...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/SettingsSidebar/index.jsx
frontend/src/components/SettingsSidebar/index.jsx
import React, { useEffect, useRef, useState } from "react"; import paths from "@/utils/paths"; import useLogo from "@/hooks/useLogo"; import { House, List, Robot, Flask, Gear, UserCircleGear, PencilSimpleLine, Nut, Toolbox, Globe, } from "@phosphor-icons/react"; import useUser from "@/hooks/useUser"...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/SettingsSidebar/MenuOption/index.jsx
frontend/src/components/SettingsSidebar/MenuOption/index.jsx
import React, { useEffect, useState } from "react"; import { CaretRight } from "@phosphor-icons/react"; import { Link, useLocation } from "react-router-dom"; import { safeJsonParse } from "@/utils/request"; export default function MenuOption({ btnText, icon, href, childOptions = [], flex = false, user = nu...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/Footer/index.jsx
frontend/src/components/Footer/index.jsx
import System from "@/models/system"; import paths from "@/utils/paths"; import { BookOpen, DiscordLogo, GithubLogo, Briefcase, Envelope, Globe, HouseLine, Info, LinkSimple, } from "@phosphor-icons/react"; import React, { useEffect, useState } from "react"; import SettingsButton from "../SettingsButto...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/DataConnectorOption/index.jsx
frontend/src/components/DataConnectorOption/index.jsx
export default function DataConnectorOption({ slug }) { if (!DATA_CONNECTORS.hasOwnProperty(slug)) return null; const { path, image, name, description, link } = DATA_CONNECTORS[slug]; return ( <a href={path}> <label className="transition-all duration-300 inline-flex flex-col h-full w-60 cursor-pointer ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/DataConnectorOption/media/index.js
frontend/src/components/DataConnectorOption/media/index.js
import GitHub from "./github.svg"; import GitLab from "./gitlab.svg"; import YouTube from "./youtube.svg"; import Link from "./link.svg"; import Confluence from "./confluence.jpeg"; import DrupalWiki from "./drupalwiki.jpg"; import Obsidian from "./obsidian.png"; import PaperlessNgx from "./paperless-ngx.jpeg"; const ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/SettingsButton/index.jsx
frontend/src/components/SettingsButton/index.jsx
import useUser from "@/hooks/useUser"; import paths from "@/utils/paths"; import { ArrowUUpLeft, Wrench } from "@phosphor-icons/react"; import { Link } from "react-router-dom"; import { useMatch } from "react-router-dom"; export default function SettingsButton() { const isInSettings = !!useMatch("/settings/*"); co...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/TextToSpeech/OpenAiGenericOptions/index.jsx
frontend/src/components/TextToSpeech/OpenAiGenericOptions/index.jsx
import React from "react"; export default function OpenAiGenericTextToSpeechOptions({ settings }) { return ( <div className="w-full flex flex-col gap-y-7"> <div className="flex gap-x-4"> <div className="flex flex-col w-60"> <div className="flex justify-between items-start mb-2"> ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/TextToSpeech/ElevenLabsOptions/index.jsx
frontend/src/components/TextToSpeech/ElevenLabsOptions/index.jsx
import { useState, useEffect } from "react"; import System from "@/models/system"; export default function ElevenLabsOptions({ settings }) { const [inputValue, setInputValue] = useState(settings?.TTSElevenLabsKey); const [elevenLabsKey, setElevenLabsKey] = useState( settings?.TTSElevenLabsKey ); return ( ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/TextToSpeech/BrowserNative/index.jsx
frontend/src/components/TextToSpeech/BrowserNative/index.jsx
export default function BrowserNative() { return ( <div className="w-full h-10 items-center flex"> <p className="text-sm font-base text-white text-opacity-60"> There is no configuration needed for this provider. </p> </div> ); }
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/TextToSpeech/OpenAiOptions/index.jsx
frontend/src/components/TextToSpeech/OpenAiOptions/index.jsx
function toProperCase(string) { return string.replace(/\w\S*/g, function (txt) { return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase(); }); } export default function OpenAiTextToSpeechOptions({ settings }) { const apiKey = settings?.TTSOpenAIKey; return ( <div className="flex gap-x-4"> ...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/TextToSpeech/PiperTTSOptions/index.jsx
frontend/src/components/TextToSpeech/PiperTTSOptions/index.jsx
import { useState, useEffect, useRef } from "react"; import PiperTTSClient from "@/utils/piperTTS"; import { titleCase } from "text-case"; import { humanFileSize } from "@/utils/numbers"; import showToast from "@/utils/toast"; import { CircleNotch, PauseCircle, PlayCircle } from "@phosphor-icons/react"; export default...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/ProviderPrivacy/index.jsx
frontend/src/components/ProviderPrivacy/index.jsx
import { useState, useEffect } from "react"; import System from "@/models/system"; import { PROVIDER_PRIVACY_MAP } from "./constants"; import { ArrowSquareOut } from "@phosphor-icons/react"; import AnythingLLMIcon from "@/media/logo/anything-llm-icon.png"; import { Link } from "react-router-dom"; import { titleCase, se...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/ProviderPrivacy/constants.js
frontend/src/components/ProviderPrivacy/constants.js
import AnythingLLMIcon from "@/media/logo/anything-llm-icon.png"; import OpenAiLogo from "@/media/llmprovider/openai.png"; import GenericOpenAiLogo from "@/media/llmprovider/generic-openai.png"; import AzureOpenAiLogo from "@/media/llmprovider/azure.png"; import AnthropicLogo from "@/media/llmprovider/anthropic.png"; i...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false
Mintplex-Labs/anything-llm
https://github.com/Mintplex-Labs/anything-llm/blob/e287fab56089cf8fcea9ba579a3ecdeca0daa313/frontend/src/components/WorkspaceChat/index.jsx
frontend/src/components/WorkspaceChat/index.jsx
import React, { useEffect, useState } from "react"; import Workspace from "@/models/workspace"; import LoadingChat from "./LoadingChat"; import ChatContainer from "./ChatContainer"; import paths from "@/utils/paths"; import ModalWrapper from "../ModalWrapper"; import { useParams } from "react-router-dom"; import { DnDF...
javascript
MIT
e287fab56089cf8fcea9ba579a3ecdeca0daa313
2026-01-04T14:57:11.963777Z
false