(WIP) Local emotion classification pipeline

This commit is contained in:
Cohee
2023-09-09 15:14:16 +03:00
parent 4d08e3e9be
commit 967a084aad
7 changed files with 389 additions and 75 deletions

View File

@@ -5741,3 +5741,7 @@ app.post('/get_character_assets_list', jsonParser, async (request, response) =>
// Vector storage DB
require('./src/vectors').registerEndpoints(app, jsonParser);
// Emotion classification
import('./src/classify.mjs').then(module => {
module.default.registerEndpoints(app, jsonParser);
});