merlyn/server/utils/agents/aibitat/plugins/index.js
Timothy Carambat 4172751858
5427 translations (#5429)
* Outlook agent via Entra Application

* translations
2026-04-14 13:38:03 -07:00

42 lines
1.3 KiB
JavaScript

const { webBrowsing } = require("./web-browsing.js");
const { webScraping } = require("./web-scraping.js");
const { websocket } = require("./websocket.js");
const { docSummarizer } = require("./summarize.js");
const { chatHistory } = require("./chat-history.js");
const { memory } = require("./memory.js");
const { rechart } = require("./rechart.js");
const { sqlAgent } = require("./sql-agent/index.js");
const { filesystemAgent } = require("./filesystem/index.js");
const { createFilesAgent } = require("./create-files/index.js");
const { gmailAgent } = require("./gmail/index.js");
const { outlookAgent } = require("./outlook/index.js");
module.exports = {
webScraping,
webBrowsing,
websocket,
docSummarizer,
chatHistory,
memory,
rechart,
sqlAgent,
filesystemAgent,
createFilesAgent,
gmailAgent,
outlookAgent,
// Plugin name aliases so they can be pulled by slug as well.
[webScraping.name]: webScraping,
[webBrowsing.name]: webBrowsing,
[websocket.name]: websocket,
[docSummarizer.name]: docSummarizer,
[chatHistory.name]: chatHistory,
[memory.name]: memory,
[rechart.name]: rechart,
[sqlAgent.name]: sqlAgent,
[filesystemAgent.name]: filesystemAgent,
[createFilesAgent.name]: createFilesAgent,
[gmailAgent.name]: gmailAgent,
[outlookAgent.name]: outlookAgent,
};