Use this file to discover all available pages before exploring further.
Vector search finds content by meaning rather than exact word matches. When you search for “How do I reset my password?”, it finds documents about “changing credentials” even if those exact words don’t appear.
Query embedding: Your search query is converted to a vector (list of numbers capturing meaning)
Similarity matching: The system finds stored vectors closest to the query vector
Ranking: Results are ordered by cosine similarity (how close the meanings are)
The embedding model determines how well semantic relationships are captured. General-purpose models like OpenAI’s text-embedding-3-small work well for most content.