Prune telemetry events

Update telemetry for model tagging
Update readme on telemetry
This commit is contained in:
timothycarambat
2025-04-29 13:54:00 -07:00
parent f9ef5840cb
commit dacd67124a
14 changed files with 129 additions and 16 deletions

View File

@@ -18,6 +18,7 @@ const {
} = require("../utils/middleware/validWorkspace");
const { WorkspaceChats } = require("../models/workspaceChats");
const { convertToChatHistory } = require("../utils/helpers/chat/responses");
const { getModelTag } = require("./utils");
function workspaceThreadEndpoints(app) {
if (!app) return;
@@ -41,6 +42,7 @@ function workspaceThreadEndpoints(app) {
Embedder: process.env.EMBEDDING_ENGINE || "inherit",
VectorDbSelection: process.env.VECTOR_DB || "lancedb",
TTSSelection: process.env.TTS_PROVIDER || "native",
LLMModel: getModelTag(),
},
user?.id
);