Return the path to the vector index SQLite database for a project.
(project_root: Path)
| 291 | |
| 292 | |
| 293 | def target_sqlite_db_path(project_root: Path) -> Path: |
| 294 | """Return the path to the vector index SQLite database for a project.""" |
| 295 | return resolve_db_dir(project_root) / _TARGET_SQLITE_DB_NAME |
| 296 | |
| 297 | |
| 298 | def cocoindex_db_path(project_root: Path) -> Path: |
no test coverage detected