Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

17 changes: 0 additions & 17 deletions frontend/src/components/WorkspaceChat/ChatContainer/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -291,23 +291,6 @@ export default function ChatContainer({
}
}, [workspace?.slug]);

useEffect(() => {
if (pendingMessageChecked.current || !workspace?.slug) return;
pendingMessageChecked.current = true;

const pending = safeJsonParse(sessionStorage.getItem(PENDING_HOME_MESSAGE));
if (pending?.message) {
setTimeout(() => {
sessionStorage.removeItem(PENDING_HOME_MESSAGE);
sendCommand({
text: pending.message,
attachments: pending.attachments || [],
autoSubmit: true,
});
}, 100);
}
}, [workspace?.slug]);

useEffect(() => {
async function fetchReply() {
const promptMessage =
Expand Down
19 changes: 0 additions & 19 deletions frontend/src/locales/dynamicKeyAllowlist.js

This file was deleted.

9 changes: 0 additions & 9 deletions frontend/src/pages/GeneralSettings/LLMPreference/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,6 @@ export const MODEL_ROUTER_PROVIDER = {
* This **never** includes the model router provider.
*/
export const AVAILABLE_LLM_PROVIDERS = [
{
name: "Model Router",
value: "anythingllm-router",
logo: AnythingLLMIcon,
options: (settings) => <ModelRouterOptions settings={settings} />,
description:
"Route messages to different LLM providers based on rules you define.",
requiredConfig: [],
},
{
name: "OpenAI",
value: "openai",
Expand Down
2 changes: 1 addition & 1 deletion server/endpoints/embed/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function embeddedEndpoints(app) {
multiUserMode: multiUserMode(response),
LLMSelection: process.env.LLM_PROVIDER || "openai",
Embedder: process.env.EMBEDDING_ENGINE || "inherit",
VectorDbSelection: process.env.VECTOR_DB || "lancedb",
VectorDbSelection: process.env.VECTOR_DB || "pgvector",
});
response.end();
} catch (e) {
Expand Down
2 changes: 0 additions & 2 deletions server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
"@langchain/core": "0.1.61",
"@langchain/openai": "0.0.28",
"@langchain/textsplitters": "0.0.0",
"@mdpdf/mdpdf": "0.1.4",
"@mintplex-labs/bree": "^9.2.5",
"@mintplex-labs/express-ws": "^5.0.7",
"@mintplex-labs/mdpdf": "^0.1.9",
Expand Down Expand Up @@ -71,7 +70,6 @@
"jsdom": "26.1.0",
"jsonrepair": "^3.7.0",
"jsonwebtoken": "^9.0.0",
"jsdom": "26.1.0",
"langchain": "0.1.36",
"marked": "15.0.12",
"mime": "^3.0.0",
Expand Down
217 changes: 0 additions & 217 deletions server/utils/AiProviders/dellProAiStudio/index.js

This file was deleted.

Loading
Loading