You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add OFFSET, SCORE THRESHOLD, WITH clause, LOOKUP FROM, and USING
to RECOMMEND statements, closing the gap with the Qdrant query_points
recommend surface.
Parser:
- Parse LOOKUP FROM <collection> [VECTOR '<name>'] for cross-collection
recommendation
- Parse USING '<vector_name>' to target a specific named vector
- Parse OFFSET <n> for pagination
- Parse SCORE THRESHOLD <f> for minimum score filtering
- Parse WITH { exact: true, hnsw_ef: <n> } for query-time search params
Executor:
- Wire offset, score_threshold, search_params, using, and lookup_from
to Qdrant query_points()
- Use LookupLocation for cross-collection ID lookups
Tests:
- Parser coverage for all new clauses and combined forms
- Executor coverage verifying forwarding to the Qdrant client
Docs:
- Update README with full RECOMMEND syntax reference
- Update sample_v2.qql with OFFSET, SCORE THRESHOLD, WITH, and USING
examples
0 commit comments