# VectorSearchResponse

Model ID: `VectorSearchResponse`

Ranked semantic-search results, with the resolved query context.

Type: `object`

## Fields

| Field | Type | Required | Format | Allowed values | Default | Nullable | Description |
|---|---|---:|---|---|---|---:|---|
| `collection` | `string` | Yes |  |  |  | No | Collection that was searched. |
| `count` | `integer` | Yes |  |  |  | No | Number of hits in this response. |
| `embedding_model` | `string` | Yes |  |  |  | No | Model used to embed the query; must match the model the collection was loaded with. |
| `filter` | `string` | Yes |  |  |  | No | Milvus filter expression the scoping parameters produced; empty when unscoped. |
| `hits` | array of [`VectorSearchHit`](./VectorSearchHit.md) | Yes |  |  |  | No | Ranked chunks, closest first. |
| `query` | `string` | Yes |  |  |  | No | The query that was embedded. |

## Example

None declared in canonical OpenAPI.
