mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-10 00:40:10 +01:00
5d56ab623b
* WIP Anythropic support for chat, chat and query w/context * Add onboarding support for Anthropic * cleanup * fix Anthropic answer parsing move embedding selector to general util
123 lines
3.3 KiB
JavaScript
123 lines
3.3 KiB
JavaScript
const { OpenAiEmbedder } = require("../../EmbeddingEngines/openAi");
|
|
|
|
class OpenAiLLM extends OpenAiEmbedder {
|
|
constructor() {
|
|
super();
|
|
const { Configuration, OpenAIApi } = require("openai");
|
|
if (!process.env.OPEN_AI_KEY) throw new Error("No OpenAI API key was set.");
|
|
|
|
const config = new Configuration({
|
|
apiKey: process.env.OPEN_AI_KEY,
|
|
});
|
|
this.openai = new OpenAIApi(config);
|
|
}
|
|
|
|
isValidChatModel(modelName = "") {
|
|
const validModels = ["gpt-4", "gpt-3.5-turbo"];
|
|
return validModels.includes(modelName);
|
|
}
|
|
|
|
constructPrompt({
|
|
systemPrompt = "",
|
|
contextTexts = [],
|
|
chatHistory = [],
|
|
userPrompt = "",
|
|
}) {
|
|
const prompt = {
|
|
role: "system",
|
|
content: `${systemPrompt}
|
|
Context:
|
|
${contextTexts
|
|
.map((text, i) => {
|
|
return `[CONTEXT ${i}]:\n${text}\n[END CONTEXT ${i}]\n\n`;
|
|
})
|
|
.join("")}`,
|
|
};
|
|
return [prompt, ...chatHistory, { role: "user", content: userPrompt }];
|
|
}
|
|
|
|
async isSafe(input = "") {
|
|
const { flagged = false, categories = {} } = await this.openai
|
|
.createModeration({ input })
|
|
.then((json) => {
|
|
const res = json.data;
|
|
if (!res.hasOwnProperty("results"))
|
|
throw new Error("OpenAI moderation: No results!");
|
|
if (res.results.length === 0)
|
|
throw new Error("OpenAI moderation: No results length!");
|
|
return res.results[0];
|
|
})
|
|
.catch((error) => {
|
|
throw new Error(
|
|
`OpenAI::CreateModeration failed with: ${error.message}`
|
|
);
|
|
});
|
|
|
|
if (!flagged) return { safe: true, reasons: [] };
|
|
const reasons = Object.keys(categories)
|
|
.map((category) => {
|
|
const value = categories[category];
|
|
if (value === true) {
|
|
return category.replace("/", " or ");
|
|
} else {
|
|
return null;
|
|
}
|
|
})
|
|
.filter((reason) => !!reason);
|
|
|
|
return { safe: false, reasons };
|
|
}
|
|
|
|
async sendChat(chatHistory = [], prompt, workspace = {}) {
|
|
const model = process.env.OPEN_MODEL_PREF;
|
|
if (!this.isValidChatModel(model))
|
|
throw new Error(
|
|
`OpenAI chat: ${model} is not valid for chat completion!`
|
|
);
|
|
|
|
const textResponse = await this.openai
|
|
.createChatCompletion({
|
|
model,
|
|
temperature: Number(workspace?.openAiTemp ?? 0.7),
|
|
n: 1,
|
|
messages: [
|
|
{ role: "system", content: "" },
|
|
...chatHistory,
|
|
{ role: "user", content: prompt },
|
|
],
|
|
})
|
|
.then((json) => {
|
|
const res = json.data;
|
|
if (!res.hasOwnProperty("choices"))
|
|
throw new Error("OpenAI chat: No results!");
|
|
if (res.choices.length === 0)
|
|
throw new Error("OpenAI chat: No results length!");
|
|
return res.choices[0].message.content;
|
|
})
|
|
.catch((error) => {
|
|
console.log(error);
|
|
throw new Error(
|
|
`OpenAI::createChatCompletion failed with: ${error.message}`
|
|
);
|
|
});
|
|
|
|
return textResponse;
|
|
}
|
|
|
|
async getChatCompletion(messages = [], { temperature = 0.7 }) {
|
|
const model = process.env.OPEN_MODEL_PREF || "gpt-3.5-turbo";
|
|
const { data } = await this.openai.createChatCompletion({
|
|
model,
|
|
messages,
|
|
temperature,
|
|
});
|
|
|
|
if (!data.hasOwnProperty("choices")) return null;
|
|
return data.choices[0].message.content;
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
OpenAiLLM,
|
|
};
|