changed recent_episode_limit to 5 for testing purposes

This commit is contained in:
Storme-bit
2026-04-05 22:30:16 -07:00
parent b71005d2b1
commit 8ee9438b1c

View File

@@ -7,7 +7,7 @@ const SYSTEM_PROMPT = `You are a helpful, context-aware AI assistant.
You have access to memories of past conversations with the user. You have access to memories of past conversations with the user.
Use them to provide consistent, personalised responses.`; Use them to provide consistent, personalised responses.`;
const RECENT_EPISODE_LIMIT = 10; // Number of recent episodes to retrieve for context const RECENT_EPISODE_LIMIT = 5; // Number of recent episodes to retrieve for context
const SEMANTIC_LIMIT = 5; const SEMANTIC_LIMIT = 5;
const SCORE_THRESHOLD = 0.75; const SCORE_THRESHOLD = 0.75;