2024-07-23 02:59:17 +02:00
|
|
|
const { fineTuningEndpoints } = require("./fineTuning");
|
2024-06-21 22:38:50 +02:00
|
|
|
const { liveSyncEndpoints } = require("./liveSync");
|
2024-09-11 02:06:02 +02:00
|
|
|
const { importedAgentPluginEndpoints } = require("./imported-agent-plugins");
|
2024-06-21 22:38:50 +02:00
|
|
|
|
|
|
|
// 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);
|
2024-07-23 02:59:17 +02:00
|
|
|
fineTuningEndpoints(router);
|
2024-09-11 02:06:02 +02:00
|
|
|
importedAgentPluginEndpoints(router);
|
2024-06-21 22:38:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = { experimentalEndpoints };
|