mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-15 10:50:31 +01:00
f8e54b2328
* WIP fine-tuning order flow * flow patches and typo * Refine steps add fine tuning CTA on chat page add fine tuning banner and validation endpoints add finetuning banner on relevant pages with perms check * Add prod firebase url
13 lines
492 B
JavaScript
13 lines
492 B
JavaScript
const { fineTuningEndpoints } = require("./fineTuning");
|
|
const { liveSyncEndpoints } = require("./liveSync");
|
|
|
|
// 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);
|
|
}
|
|
|
|
module.exports = { experimentalEndpoints };
|