Chunk #401
Aus: Embedding (Index: 1)
86
Tokens
Synced
Status
Taxonomie
| Kategorie | KI-System |
|---|---|
| Pfad | KI-System > Embedding > Qdrant-Speicherung |
| Heading-Pfad | Embedding > Embedding > Qdrant-Speicherung |
Entities
| Name | Typ |
|---|---|
| QdrantClient | TECHNOLOGY |
| Qdrant | TECHNOLOGY |
| PointStruct | CONCEPT |
| uuid4 | TECHNOLOGY |
Keywords
Inhalt
from qdrant_client import QdrantClient
from qdrant_client.models import PointStruct
client = QdrantClient(host="localhost", port=6333)
client.upsert(
collection_name="documents",
points=[
PointStruct(
id=uuid4().hex,
vector=embedding,
payload={
"document_id": 123,
"chunk_id": 1,
"content_preview": text[:200]
}
)
]
)Clean Content
```
`from qdrant_client import QdrantClient
from qdrant_client.models import PointStruct
client = QdrantClient(host="localhost", port=6333)
client.upsert(
collection_name="documents",
points=[
PointStruct(
id=uuid4().hex,
vector=embedding,
payload={
"document_id": 123,
"chunk_id": 1,
"content_preview": text[:200]
}
)
]
)`
```
Metadaten
| Analysiert am | 20.12.2025 12:36:32 |
|---|---|
| Analyse-Modell | gemma3:4b-it-qat |
| Embedding-Modell | mxbai-embed-large |
| Qdrant-ID | dc085a12-86be-44e3-8ddd-7dfe1043a512 |
| Erstellt | 20.12.2025 12:34:42 |
| Aktualisiert | 20.12.2025 12:53:35 |