Skip to content

Commit bd66460

Browse files
committed
Fix remaining import issues in notebooks
- Fixed 'from redis_context_course.memory_client import MemoryClient' to 'from redis_context_course import MemoryClient' - Fixed MemoryClient initialization in section-1 notebooks to use MemoryClientConfig - Section-1 notebooks now pass locally (25/25) All notebooks now import correctly and use proper API initialization.
1 parent ff2c4ac commit bd66460

File tree

4 files changed

+175
-161
lines changed

4 files changed

+175
-161
lines changed

python-recipes/context-engineering/notebooks/section-1-introduction/01_what_is_context_engineering.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
"source": [
193193
"# Import the Redis Context Course components\n",
194194
"from redis_context_course.models import Course, StudentProfile, DifficultyLevel, CourseFormat\n",
195-
"from redis_context_course.memory_client import MemoryClient\n",
195+
"from redis_context_course import MemoryClient\n",
196196
"from redis_context_course.course_manager import CourseManager\n",
197197
"from redis_context_course.redis_config import redis_config\n",
198198
"\n",

0 commit comments

Comments
 (0)