Chunk #644

Aus: AI-Services (Index: 9)

75 Tokens
Synced Status
« Vorheriger (#8) Nächster (#10) »

Taxonomie

Kategorie AI-Services
Pfad AI-Services > QdrantService > API-Call
Heading-Pfad AI-Services > AI Services > QdrantService > API-Aufruf

Entities

Name Typ
Qdrant SERVICE
Vector Search TECHNOLOGY
API Endpoint COMMAND
HTTP POST COMMAND

Keywords

Qdrant Vector Search API POST

Inhalt

POST http://localhost:6333/collections/documents/points/search
Content-Type: application/json

{
    "vector": [0.123, -0.456, ...],
    "limit": 5,
    "with_payload": true
}

Response:
{
    "result": [
        {
            "id": 1,
            "score": 0.89,
            "payload": {
                "content": "...",
                "document_title": "..."
            }
        }
    ]
}

Clean Content

```
`POST http://localhost:6333/collections/documents/points/search
Content-Type: application/json

{
 "vector": [0.123, -0.456, ...],
 "limit": 5,
 "with_payload": true
}

Response:
{
 "result": [
 {
 "id": 1,
 "score": 0.89,
 "payload": {
 "content": "...",
 "document_title": "..."
 }
 }
 ]
}`
```

Metadaten

Analysiert am20.12.2025 12:48:41
Analyse-Modellgemma3:4b-it-qat
Embedding-Modellmxbai-embed-large
Qdrant-ID6125775d-a686-4820-b82d-07ded7de3731
Erstellt20.12.2025 12:34:42
Aktualisiert20.12.2025 12:53:41