Whatever message this page gives is out now! Go check it out!
Field | Description |
|---|---|
Provider | Qdrant. The selected vector store provider for this configuration. |
URL | Required. HTTP or HTTPS endpoint for your Qdrant instance (for example http://localhost:6333 for a local default, or the URL shown in Qdrant Cloud). Must be reachable from the application server. |
API key | Optional for local deployments without auth. Required for typical Qdrant Cloud clusters. Create and rotate keys in the Qdrant Cloud console; treat any saved key as a secret. |
Collection name | Optional with a product default (often default). Logical collection for vectors and payload. If the collection does not exist, the product may create it using the dimension and distance metric you specify—confirm auto-create behavior in your release notes. |
Dimension | Required (or defaulted). Vector length. Must match your embedding model (for example 1536 for OpenAI text-embedding-3-small at default size, 384 for common MiniLM-style models). |
Distance metric | How similarity is measured between vectors: for example Cosine, Euclidean (L2), Manhattan, or Dot (inner product). Choose a metric aligned with your embedding model and normalization; cosine is common for normalized embeddings. |
Top K | Maximum number of hits to return from a similarity search. Must be a positive integer when set. |
Min score | Optional minimum similarity score; results below the threshold are dropped. Often interpreted between 0 and 1 depending on client and metric; leave empty to return all top-K matches without filtering by score. |
Field | Description |
|---|---|
Call timeout (ms) | Maximum time to wait for a single client call to finish. Default is often 60000 ms (60 seconds). |
Connection timeout (ms) | Maximum time to wait while establishing a connection. Default is often 20000 ms (20 seconds). |
Keep alive | When enabled, keeps HTTP connections warm (for example HTTP/2 keep-alive), which can reduce latency on steady workloads. Default is often on. |
Keep alive time (ms) | Interval between keep-alive signals when the connection is idle. Default is often 30000 ms (30 seconds). |
Keep alive timeout (ms) | How long to wait for a keep-alive acknowledgment. Default is often 5000 ms (5 seconds). |
Idle timeout (ms) | How long a connection may stay idle before the client closes it. Default is often 600000 ms (10 minutes / 600 seconds). |
Field | Description |
|---|---|
Max retries | How many times to retry after a failed request. Default is often 3. |
Initial backoff (ms) | Delay before the first retry. Default is often 200 ms. |
Max backoff (ms) | Upper cap on delay between retries. Default is often 1000 ms (1 second). |
Backoff multiplier | Factor applied between retry attempts (exponential backoff). Default is often 2. |
Field | Description |
|---|---|
Source | None — skip embedding configuration only when valid for this flow. Pre-configured — use a profile from AI Services > Embedding models. Custom — configure embedding inline. |
Provider | After you choose a source, select the embedding provider (OpenAI, Mistral, Ollama, and so on). That drives vector generation; Qdrant settings define storage, metric, and search behavior. |