rag.ingest() embeds chunks for you. Use rag.embed() directly when you need to inspect vectors or control batching/model choice.
Embed Chunks
Result
embedding:
Create an Embedder
input_type="document" while indexing and input_type="query" for retrieval. rag.query(), rag.retrieve(), and rag.chat() create query embedders automatically from constructor defaults.
Override the Model
Parameters
embedder()
embed()
Next Stage
Chunking
Create chunks.
Storing
Store embedded chunks.

