move files to prompts directory

This commit is contained in:
Pratyush Shukla 2025-09-30 03:48:58 +05:30
parent 33a08b7b71
commit c66cb49a4a
No known key found for this signature in database
GPG Key ID: AFCF7DAD6BA1FEE2
20 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ from pathlib import Path
# Import the modular prompt assembler
try:
from .prompt_system.assembler import (
from .assembler import (
PromptAssembler,
get_assembler,
get_system_prompt as _get_system_prompt
@ -38,7 +38,7 @@ except ImportError as e:
MODULAR_SYSTEM_AVAILABLE = False
raise ImportError(
f"Failed to import modular prompt system: {e}. "
"Ensure prompt_system module is properly installed."
"Ensure assembler module is properly installed."
)