Skip to main content
Storing writes embedded chunks to Qdrant, Pinecone, or Weaviate. In the full SDK workflow, rag.ingest() stores embedded chunks for you. Use rag.store(), rag.edit(), and rag.delete() directly for manual pipelines and maintenance.

Store

The collection is created automatically by default.

Edit

edit() re-embeds replacement chunks and replaces stored records by exact ID.
Pass embedder=... to control the re-embedding model for this edit.

Delete

Deletes are exact-ID operations. They do not perform semantic matching.

Vector Database Names

Manual Pipeline

Embedding

Create embedded chunks.

Maintenance

Update or delete stored chunks.