summary system backend implementation

This commit is contained in:
Storme-bit
2026-04-19 07:19:27 -07:00
parent 57e8c4c486
commit 4cc87d96b6
5 changed files with 178 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
const {getEnv} = require('./config/env');
const {QDRANT, COLLECTIONS, EPISODIC, SERVICES, OLLAMA, PORTS, LLAMACPP, INFERENCE_DEFAULTS, SQLITE, ORCHESTRATION } = require('./config/constants');
const {QDRANT, COLLECTIONS, EPISODIC, SERVICES, OLLAMA, PORTS, LLAMACPP, INFERENCE_DEFAULTS, SQLITE, ORCHESTRATION, SUMMARIES } = require('./config/constants');
const {parseRow, formatEpisodeText} = require('./utils')
module.exports = {
@@ -16,4 +16,5 @@ module.exports = {
ORCHESTRATION,
parseRow,
formatEpisodeText,
SUMMARIES,
};