Add local vectors storage

This commit is contained in:
Cohee
2023-09-07 21:53:47 +03:00
parent 89705391d1
commit 8c00f38a1f
5 changed files with 879 additions and 3 deletions

View File

@ -5825,3 +5825,6 @@ app.post('/get_character_assets_list', jsonParser, async (request, response) =>
return response.sendStatus(500);
}
});
// Vector storage DB
require('./src/vectors').registerEndpoints(app, jsonParser);