Im new to using convex rag. I was wondering if "await rag.delete(ctx, { entryId: entry.entryId });" is supposed to delete the vector embeddings alongside the chunks, content, and the entry it makes for a specific document you run it on.
This is my rag.ts init: export const rag = new RAG(components.rag, { textEmbeddingModel: openai.embedding("text-embedding-3-small"), embeddingDimension: 1536, });