mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-19 12:40:09 +01:00
d1103e2b71
* Add support for custom agent skills via plugins Update Admin.systemPreferences to updated endpoint (legacy has deprecation notice * lint * dev build * patch safeJson patch label loading * allow plugins with no config options * lint * catch invalid setupArgs in frontend * update link to docs page for agent skills * remove unneeded files --------- Co-authored-by: shatfield4 <seanhatfield5@gmail.com>
15 lines
610 B
JavaScript
15 lines
610 B
JavaScript
const { fineTuningEndpoints } = require("./fineTuning");
|
|
const { liveSyncEndpoints } = require("./liveSync");
|
|
const { importedAgentPluginEndpoints } = require("./imported-agent-plugins");
|
|
|
|
// All endpoints here are not stable and can move around - have breaking changes
|
|
// or are opt-in features that are not fully released.
|
|
// When a feature is promoted it should be removed from here and added to the appropriate scope.
|
|
function experimentalEndpoints(router) {
|
|
liveSyncEndpoints(router);
|
|
fineTuningEndpoints(router);
|
|
importedAgentPluginEndpoints(router);
|
|
}
|
|
|
|
module.exports = { experimentalEndpoints };
|