2024-04-16 19:50:10 +02:00
|
|
|
const AgentPlugins = require("./aibitat/plugins");
|
|
|
|
const { SystemSettings } = require("../../models/systemSettings");
|
|
|
|
const { safeJsonParse } = require("../http");
|
2024-05-08 01:35:47 +02:00
|
|
|
const Provider = require("./aibitat/providers/ai-provider");
|
2024-04-16 19:50:10 +02:00
|
|
|
|
|
|
|
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",
|
2024-05-08 01:35:47 +02:00
|
|
|
getDefinition: async (provider = null) => {
|
2024-04-16 19:50:10 +02:00
|
|
|
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 {
|
2024-05-08 01:35:47 +02:00
|
|
|
role: Provider.systemPrompt(provider),
|
2024-04-16 19:50:10 +02:00
|
|
|
functions: defaultFunctions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
USER_AGENT,
|
|
|
|
WORKSPACE_AGENT,
|
|
|
|
};
|