Get the path to the assistant database for a project.
(project_dir: Path)
| 63 | |
| 64 | |
| 65 | def get_db_path(project_dir: Path) -> Path: |
| 66 | """Get the path to the assistant database for a project.""" |
| 67 | from autoforge_paths import get_assistant_db_path |
| 68 | return get_assistant_db_path(project_dir) |
| 69 | |
| 70 | |
| 71 | def get_engine(project_dir: Path): |
no test coverage detected