mirror of
https://github.com/VectifyAI/PageIndex.git
synced 2026-06-21 20:18:09 +02:00
fix(filesystem): restore summary vector search in cli
This commit is contained in:
parent
7e70b580f0
commit
fc0be1aeee
6 changed files with 147 additions and 3 deletions
|
|
@ -122,7 +122,10 @@ def _parse_agent_command(
|
|||
|
||||
|
||||
def _filesystem_from_workspace(workspace: str) -> PageIndexFileSystem:
|
||||
return PageIndexFileSystem(Path(workspace).expanduser())
|
||||
filesystem = PageIndexFileSystem(Path(workspace).expanduser())
|
||||
with contextlib.suppress(Exception):
|
||||
filesystem.configure_existing_projection_retrieval()
|
||||
return filesystem
|
||||
|
||||
|
||||
def _agent_kwargs(args: argparse.Namespace) -> dict[str, object]:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue