Home
Blog
Tools
Home
Blog
Tools
Code Snippet Studio
Format
Download PNG
Copy image
// Paste your own code to get started export async function retrieve(query: string, topK = 5) { const embedding = await embed(query); const matches = await index.query({ vector: embedding, topK }); return matches .filter((m) => m.score > 0.75) .map((m) => m.metadata.chunk); }
Options