2023-11-14 00:07:30 +01:00
|
|
|
const { v4: uuidv4 } = require("uuid");
|
|
|
|
const { WorkspaceChats } = require("../../models/workspaceChats");
|
|
|
|
const { getVectorDbClass, getLLMProvider } = require("../helpers");
|
2024-02-14 21:32:07 +01:00
|
|
|
const { writeResponseChunk } = require("../helpers/chat/responses");
|
2023-11-14 00:07:30 +01:00
|
|
|
const {
|
|
|
|
grepCommand,
|
|
|
|
VALID_COMMANDS,
|
|
|
|
chatPrompt,
|
2024-02-14 21:32:07 +01:00
|
|
|
recentChatHistory,
|
|
|
|
} = require("./index");
|
2023-11-14 00:07:30 +01:00
|
|
|
|
2024-01-16 19:37:46 +01:00
|
|
|
const VALID_CHAT_MODE = ["chat", "query"];
|
2023-11-14 00:07:30 +01:00
|
|
|
|
|
|
|
async function streamChatWithWorkspace(
|
|
|
|
response,
|
|
|
|
workspace,
|
|
|
|
message,
|
|
|
|
chatMode = "chat",
|
2024-02-09 03:37:22 +01:00
|
|
|
user = null,
|
|
|
|
thread = null
|
2023-11-14 00:07:30 +01:00
|
|
|
) {
|
|
|
|
const uuid = uuidv4();
|
|
|
|
const command = grepCommand(message);
|
|
|
|
|
|
|
|
if (!!command && Object.keys(VALID_COMMANDS).includes(command)) {
|
2024-02-09 03:37:22 +01:00
|
|
|
const data = await VALID_COMMANDS[command](
|
|
|
|
workspace,
|
|
|
|
message,
|
|
|
|
uuid,
|
|
|
|
user,
|
|
|
|
thread
|
|
|
|
);
|
2023-11-14 00:07:30 +01:00
|
|
|
writeResponseChunk(response, data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-01-17 21:59:25 +01:00
|
|
|
const LLMConnector = getLLMProvider(workspace?.chatModel);
|
2023-11-14 00:07:30 +01:00
|
|
|
const VectorDb = getVectorDbClass();
|
|
|
|
const { safe, reasons = [] } = await LLMConnector.isSafe(message);
|
|
|
|
if (!safe) {
|
|
|
|
writeResponseChunk(response, {
|
|
|
|
id: uuid,
|
|
|
|
type: "abort",
|
|
|
|
textResponse: null,
|
|
|
|
sources: [],
|
|
|
|
close: true,
|
|
|
|
error: `This message was moderated and will not be allowed. Violations for ${reasons.join(
|
|
|
|
", "
|
|
|
|
)} found.`,
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const messageLimit = workspace?.openAiHistory || 20;
|
|
|
|
const hasVectorizedSpace = await VectorDb.hasNamespace(workspace.slug);
|
|
|
|
const embeddingsCount = await VectorDb.namespaceCount(workspace.slug);
|
2024-01-16 18:32:51 +01:00
|
|
|
|
2024-02-14 21:32:07 +01:00
|
|
|
// User is trying to query-mode chat a workspace that has no data in it - so
|
|
|
|
// we should exit early as no information can be found under these conditions.
|
|
|
|
if ((!hasVectorizedSpace || embeddingsCount === 0) && chatMode === "query") {
|
|
|
|
writeResponseChunk(response, {
|
|
|
|
id: uuid,
|
|
|
|
type: "textResponse",
|
|
|
|
textResponse:
|
|
|
|
"There is no relevant information in this workspace to answer your query.",
|
|
|
|
sources: [],
|
|
|
|
close: true,
|
|
|
|
error: null,
|
2023-11-14 00:07:30 +01:00
|
|
|
});
|
2024-02-14 21:32:07 +01:00
|
|
|
return;
|
2023-11-14 00:07:30 +01:00
|
|
|
}
|
|
|
|
|
2024-02-14 21:32:07 +01:00
|
|
|
// If we are here we know that we are in a workspace that is:
|
|
|
|
// 1. Chatting in "chat" mode and may or may _not_ have embeddings
|
|
|
|
// 2. Chatting in "query" mode and has at least 1 embedding
|
2023-11-14 00:07:30 +01:00
|
|
|
let completeText;
|
2024-02-14 21:32:07 +01:00
|
|
|
const { rawHistory, chatHistory } = await recentChatHistory({
|
|
|
|
user,
|
|
|
|
workspace,
|
|
|
|
thread,
|
|
|
|
messageLimit,
|
|
|
|
chatMode,
|
|
|
|
});
|
2024-02-09 03:37:22 +01:00
|
|
|
|
2023-11-14 00:07:30 +01:00
|
|
|
const {
|
|
|
|
contextTexts = [],
|
|
|
|
sources = [],
|
|
|
|
message: error,
|
2024-02-14 21:32:07 +01:00
|
|
|
} = embeddingsCount !== 0 // if there no embeddings don't bother searching.
|
|
|
|
? await VectorDb.performSimilaritySearch({
|
|
|
|
namespace: workspace.slug,
|
|
|
|
input: message,
|
|
|
|
LLMConnector,
|
|
|
|
similarityThreshold: workspace?.similarityThreshold,
|
|
|
|
topN: workspace?.topN,
|
|
|
|
})
|
|
|
|
: {
|
|
|
|
contextTexts: [],
|
|
|
|
sources: [],
|
|
|
|
message: null,
|
|
|
|
};
|
2023-11-14 00:07:30 +01:00
|
|
|
|
2024-02-14 21:32:07 +01:00
|
|
|
// Failed similarity search if it was run at all and failed.
|
2023-11-14 00:07:30 +01:00
|
|
|
if (!!error) {
|
|
|
|
writeResponseChunk(response, {
|
|
|
|
id: uuid,
|
|
|
|
type: "abort",
|
|
|
|
textResponse: null,
|
|
|
|
sources: [],
|
|
|
|
close: true,
|
|
|
|
error,
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-01-16 18:32:51 +01:00
|
|
|
// If in query mode and no sources are found, do not
|
2024-02-14 21:32:07 +01:00
|
|
|
// let the LLM try to hallucinate a response or use general knowledge and exit early
|
2024-01-16 18:32:51 +01:00
|
|
|
if (chatMode === "query" && sources.length === 0) {
|
|
|
|
writeResponseChunk(response, {
|
|
|
|
id: uuid,
|
|
|
|
type: "textResponse",
|
|
|
|
textResponse:
|
|
|
|
"There is no relevant information in this workspace to answer your query.",
|
|
|
|
sources: [],
|
|
|
|
close: true,
|
|
|
|
error: null,
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-02-14 21:32:07 +01:00
|
|
|
// Compress & Assemble message to ensure prompt passes token limit with room for response
|
2023-11-14 00:07:30 +01:00
|
|
|
// and build system messages based on inputs and history.
|
|
|
|
const messages = await LLMConnector.compressMessages(
|
|
|
|
{
|
|
|
|
systemPrompt: chatPrompt(workspace),
|
|
|
|
userPrompt: message,
|
|
|
|
contextTexts,
|
|
|
|
chatHistory,
|
|
|
|
},
|
|
|
|
rawHistory
|
|
|
|
);
|
|
|
|
|
|
|
|
// If streaming is not explicitly enabled for connector
|
|
|
|
// we do regular waiting of a response and send a single chunk.
|
|
|
|
if (LLMConnector.streamingEnabled() !== true) {
|
|
|
|
console.log(
|
|
|
|
`\x1b[31m[STREAMING DISABLED]\x1b[0m Streaming is not available for ${LLMConnector.constructor.name}. Will use regular chat method.`
|
|
|
|
);
|
|
|
|
completeText = await LLMConnector.getChatCompletion(messages, {
|
2024-01-17 23:42:05 +01:00
|
|
|
temperature: workspace?.openAiTemp ?? LLMConnector.defaultTemp,
|
2023-11-14 00:07:30 +01:00
|
|
|
});
|
|
|
|
writeResponseChunk(response, {
|
|
|
|
uuid,
|
|
|
|
sources,
|
|
|
|
type: "textResponseChunk",
|
|
|
|
textResponse: completeText,
|
|
|
|
close: true,
|
|
|
|
error: false,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
const stream = await LLMConnector.streamGetChatCompletion(messages, {
|
2024-01-17 23:42:05 +01:00
|
|
|
temperature: workspace?.openAiTemp ?? LLMConnector.defaultTemp,
|
2023-11-14 00:07:30 +01:00
|
|
|
});
|
2024-02-07 17:15:14 +01:00
|
|
|
completeText = await LLMConnector.handleStream(response, stream, {
|
2023-11-14 00:07:30 +01:00
|
|
|
uuid,
|
|
|
|
sources,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-02-13 20:33:05 +01:00
|
|
|
const { chat } = await WorkspaceChats.new({
|
2023-11-14 00:07:30 +01:00
|
|
|
workspaceId: workspace.id,
|
|
|
|
prompt: message,
|
|
|
|
response: { text: completeText, sources, type: chatMode },
|
2024-02-14 21:32:07 +01:00
|
|
|
threadId: thread?.id || null,
|
2024-02-13 20:33:05 +01:00
|
|
|
user,
|
|
|
|
});
|
|
|
|
|
|
|
|
writeResponseChunk(response, {
|
|
|
|
uuid,
|
|
|
|
type: "finalizeResponseStream",
|
|
|
|
close: true,
|
|
|
|
error: false,
|
|
|
|
chatId: chat.id,
|
2023-11-14 00:07:30 +01:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
2024-01-16 19:37:46 +01:00
|
|
|
VALID_CHAT_MODE,
|
2023-11-14 00:07:30 +01:00
|
|
|
streamChatWithWorkspace,
|
|
|
|
};
|