mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-11 01:10:11 +01:00
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
|
const AgentPlugins = require("./aibitat/plugins");
|
||
|
const { SystemSettings } = require("../../models/systemSettings");
|
||
|
const { safeJsonParse } = require("../http");
|
||
|
|
||
|
const USER_AGENT = {
|
||
|
name: "USER",
|
||
|
getDefinition: async () => {
|
||
|
return {
|
||
|
interrupt: "ALWAYS",
|
||
|
role: "I am the human monitor and oversee this chat. Any questions on action or decision making should be directed to me.",
|
||
|
};
|
||
|
},
|
||
|
};
|
||
|
|
||
|
const WORKSPACE_AGENT = {
|
||
|
name: "@agent",
|
||
|
getDefinition: async () => {
|
||
|
const defaultFunctions = [
|
||
|
AgentPlugins.memory.name, // RAG
|
||
|
AgentPlugins.docSummarizer.name, // Doc Summary
|
||
|
AgentPlugins.webScraping.name, // Collector web-scraping
|
||
|
];
|
||
|
|
||
|
const _setting = (
|
||
|
await SystemSettings.get({ label: "default_agent_skills" })
|
||
|
)?.value;
|
||
|
safeJsonParse(_setting, []).forEach((skillName) => {
|
||
|
if (!AgentPlugins.hasOwnProperty(skillName)) return;
|
||
|
defaultFunctions.push(AgentPlugins[skillName].name);
|
||
|
});
|
||
|
|
||
|
return {
|
||
|
role: "You are a helpful ai assistant who can assist the user and use tools available to help answer the users prompts and questions.",
|
||
|
functions: defaultFunctions,
|
||
|
};
|
||
|
},
|
||
|
};
|
||
|
|
||
|
module.exports = {
|
||
|
USER_AGENT,
|
||
|
WORKSPACE_AGENT,
|
||
|
};
|