fixed typo

This commit is contained in:
Storme-bit
2026-04-05 22:45:01 -07:00
parent 8ee9438b1c
commit 3b5f0afece
3 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
const {getEnv, QDRANT, COLLECTIONS } = require('@nexusai/shared')
const BASE_URL = getEnv('QDrant_URL', QDRANT.DEFAULT_URL);
const BASE_URL = getEnv('QDRANT_URL', QDRANT.DEFAULT_URL);
async function searchEpisodes( vector, {limit = 5, scoreThreshold = 0.75, sessionId } = {}) {
const body = {vector, limit, score_threshold: scoreThreshold, with_payload: true};