qdrant_points_upsert
Upsert points (id, vector, payload) into a Qdrant collection, with clear error if collection doesn't exist.
Instructions
Insert or replace points (id + vector + payload) in a collection.
Fails with a clear error if the collection doesn't exist.
Example: {"collection_name": "docs", "points": [
{"id": 1, "vector": [0.1, 0.2, 0.3, 0.4], "payload": {"city": "ny"}}
]}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| points | Yes | ||
| collection_name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | Yes | ||
| operation_id | No | Sequential number of the operation |