vector_search
Search across all indexed layers to find relevant knowledge by meaning. Returns nodes sorted by relevance score for context expansion.
Instructions
Semantic vector search across all indexed layers (Entity + Chunk + Fact). Use to FIND RELEVANT KNOWLEDGE by meaning. Returns nodes sorted by relevance score. Then use graph_get_node or desktop_focus to expand the context. This is the PRIMARY entry point for the regression search pattern: 1. vector_search (meaning) -> 2. graph_get_node (context) -> 3. read files (specifics).
CROSS-PROJECT: without workspace_id, searches ALL workspaces. Add workspace_id to narrow to one project.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Natural language search query | |
| workspace_id | No | Optional. Omit to search ALL projects (cross-project). Set to narrow to one project. | |
| top_k | No | ||
| time_from | No | ISO 8601 start time filter (optional) | |
| time_to | No | ISO 8601 end time filter (optional) |