Get the prompts directory for a specific project.
(project_dir: Path)
| 18 | |
| 19 | |
| 20 | def get_project_prompts_dir(project_dir: Path) -> Path: |
| 21 | """Get the prompts directory for a specific project.""" |
| 22 | from autoforge_paths import get_prompts_dir |
| 23 | return get_prompts_dir(project_dir) |
| 24 | |
| 25 | |
| 26 | def load_prompt(name: str, project_dir: Path | None = None) -> str: |
no test coverage detected