Vector Search
Vector search exact words அல்லாமல் meaning அடிப்படையில் content ஐ கண்டறிகிறது. Text high-dimensional embeddings ஆக மாற்றப்படுகிறது; cosine distance போன்ற similarity metric query vector க்கு stored vectors எவ்வளவு அருகில் உள்ளன என்பதை rank செய்கிறது, keywords match ஆகாவிட்டாலும் conceptually related passages return ஆகும்.
இணைச்சொற்கள்: semantic search, similarity search, nearest-neighbor search, embedding search
Vector search semantic retrieval ஐ power செய்கிறது: strings match செய்வதற்குப் பதிலாக meaning match செய்கிறது. Query indexed content இருக்கும் அதே vector space இல் embed செய்யப்படுகிறது, index distance metric மூலம் nearest vectors ஐ return செய்கிறது. Scale இல் fast ஆக இருக்க production systems approximate nearest-neighbor indexes பயன்படுத்துகின்றன; பெரிய latency gains க்காக சிறிய accuracy trade-offs ஏற்கின்றன. Exact identifiers pure semantic matching இல் இழக்கப்படாமல் இருக்க vector search ஐ hybrid retriever இல் keyword search உடன் pair செய்தால் மிகச் சிறப்பாக இயங்கும்.