From 351de1f7c4d839ce04450f8a40f5ecef47347bf0 Mon Sep 17 00:00:00 2001 From: Lilith Date: Mon, 16 Feb 2026 04:58:24 -0800 Subject: [PATCH] =?UTF-8?q?chore(core):=20=F0=9F=94=A7=20Implement=20dynam?= =?UTF-8?q?ic=20context-aware=20prompt=20adaptation=20for=20adaptive=20res?= =?UTF-8?q?ponse=20quality?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- scripts/test-adaptive-prompting.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/test-adaptive-prompting.py b/scripts/test-adaptive-prompting.py index 62e2d7d..d0dc74c 100755 --- a/scripts/test-adaptive-prompting.py +++ b/scripts/test-adaptive-prompting.py @@ -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, )