We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cd3e6a commit ee8854dCopy full SHA for ee8854d
pkg/heimdall/types.go
@@ -633,6 +633,16 @@ Modifications (use carefully):
633
Subqueries:
634
CALL { MATCH (n) RETURN count(n) as c } RETURN c - Subquery
635
UNWIND [1,2,3] AS x RETURN x - List expansion
636
+
637
+To perform a vector search, you can use the following syntax:
638
+ CALL db.index.vector.queryNodes('chunk_embedding_index', 50, 'YOUR QUERY HERE')
639
+ YIELD node AS chunk, score
640
+ MATCH (file:File)-[:HAS_CHUNK]->(chunk)
641
+ RETURN file.path AS file,
642
+ max(score) AS bestScore,
643
+ count(*) AS matchedChunks
644
+ ORDER BY bestScore DESC
645
+ LIMIT 10;
646
`
647
648
// EstimatedSystemTokens returns estimated token count for the system prompt.
0 commit comments