Skip to content
Snippets Groups Projects
Unverified Commit b557a289 authored by Timothy Carambat's avatar Timothy Carambat Committed by GitHub
Browse files

Support `@agent` custom skills (#2280)

* Support `@agent` custom skills

* move import
parent 297b8aaf
No related branches found
No related tags found
No related merge requests found
const AIbitat = require("./aibitat"); const AIbitat = require("./aibitat");
const AgentPlugins = require("./aibitat/plugins"); const AgentPlugins = require("./aibitat/plugins");
const ImportedPlugin = require("./imported");
const { httpSocket } = require("./aibitat/plugins/http-socket.js"); const { httpSocket } = require("./aibitat/plugins/http-socket.js");
const { WorkspaceChats } = require("../../models/workspaceChats"); const { WorkspaceChats } = require("../../models/workspaceChats");
const { safeJsonParse } = require("../http"); const { safeJsonParse } = require("../http");
...@@ -160,6 +161,27 @@ class EphemeralAgentHandler extends AgentHandler { ...@@ -160,6 +161,27 @@ class EphemeralAgentHandler extends AgentHandler {
continue; continue;
} }
// Load imported plugin. This is marked by `@@` in the array of functions to load.
// and is the @@hubID of the plugin.
if (name.startsWith("@@")) {
const hubId = name.replace("@@", "");
const valid = ImportedPlugin.validateImportedPluginHandler(hubId);
if (!valid) {
this.log(
`Imported plugin by hubId ${hubId} not found in plugin directory. Skipping inclusion to agent cluster.`
);
continue;
}
const plugin = ImportedPlugin.loadPluginByHubId(hubId);
const callOpts = plugin.parseCallOptions();
this.aibitat.use(plugin.plugin(callOpts));
this.log(
`Attached ${plugin.name} (${hubId}) imported plugin to Agent cluster`
);
continue;
}
// Load single-stage plugin. // Load single-stage plugin.
if (!AgentPlugins.hasOwnProperty(name)) { if (!AgentPlugins.hasOwnProperty(name)) {
this.log( this.log(
...@@ -192,6 +214,7 @@ class EphemeralAgentHandler extends AgentHandler { ...@@ -192,6 +214,7 @@ class EphemeralAgentHandler extends AgentHandler {
AgentPlugins.docSummarizer.name, AgentPlugins.docSummarizer.name,
AgentPlugins.webScraping.name, AgentPlugins.webScraping.name,
...(await agentSkillsFromSystemSettings()), ...(await agentSkillsFromSystemSettings()),
...(await ImportedPlugin.activeImportedPlugins()),
]; ];
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment