chore(core): 🔧 Implement dynamic context-aware prompt adaptation for adaptive response quality

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-02-16 04:58:24 -08:00
parent 7ac4ca3c1e
commit 351de1f7c4

View file

@ -14,7 +14,8 @@ import sys
from datetime import datetime, timedelta
from pathlib import Path
# Add the knowledge-ai package to path
# Add packages to path
sys.path.insert(0, str(Path.home() / "Code/@applications/@ml/knowledge-platform"))
sys.path.insert(
0,
str(
@ -23,7 +24,7 @@ sys.path.insert(
),
)
from lilith_platform_knowledge_ai.feedback import (
from knowledge_platform.feedback import (
AdaptivePromptBuilder,
UserStatsTracker,
)