From 2ecdcc7ae367cd9dd76dbb0cc175861a2cfc10eb Mon Sep 17 00:00:00 2001 From: Michael Dyer Date: Wed, 9 Oct 2024 18:47:31 +0200 Subject: [PATCH] Fix imports --- app/pipeline/text_exercise_chat_pipeline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/pipeline/text_exercise_chat_pipeline.py b/app/pipeline/text_exercise_chat_pipeline.py index 5fc6cca6..3aad4625 100644 --- a/app/pipeline/text_exercise_chat_pipeline.py +++ b/app/pipeline/text_exercise_chat_pipeline.py @@ -8,12 +8,12 @@ from app.domain.text_exercise_chat_pipeline_execution_dto import ( TextExerciseChatPipelineExecutionDTO, ) -from pipeline.prompts.text_exercise_chat_prompts import ( +from app.pipeline.prompts.text_exercise_chat_prompts import ( fmt_system_prompt, fmt_rejection_prompt, fmt_guard_prompt, ) -from web.status.status_update import TextExerciseChatCallback +from app.web.status.status_update import TextExerciseChatCallback logger = logging.getLogger(__name__)