mirror of https://github.com/kortix-ai/suna.git
move files to prompts directory
This commit is contained in:
parent
33a08b7b71
commit
c66cb49a4a
|
@ -28,7 +28,7 @@ from pathlib import Path
|
||||||
|
|
||||||
# Import the modular prompt assembler
|
# Import the modular prompt assembler
|
||||||
try:
|
try:
|
||||||
from .prompt_system.assembler import (
|
from .assembler import (
|
||||||
PromptAssembler,
|
PromptAssembler,
|
||||||
get_assembler,
|
get_assembler,
|
||||||
get_system_prompt as _get_system_prompt
|
get_system_prompt as _get_system_prompt
|
||||||
|
@ -38,7 +38,7 @@ except ImportError as e:
|
||||||
MODULAR_SYSTEM_AVAILABLE = False
|
MODULAR_SYSTEM_AVAILABLE = False
|
||||||
raise ImportError(
|
raise ImportError(
|
||||||
f"Failed to import modular prompt system: {e}. "
|
f"Failed to import modular prompt system: {e}. "
|
||||||
"Ensure prompt_system module is properly installed."
|
"Ensure assembler module is properly installed."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue