# agentsea_ingest v0.1.0 - Table of Contents

> AgentSea ingest: a Broadway document ingestion pipeline (chunk, embed, store).

## Modules

- [AgentSea.Ingest](AgentSea.Ingest.md): Document ingestion. `chunk_documents/2` turns documents into chunk messages
(the unit the `AgentSea.Ingest.Pipeline` Broadway topology embeds and stores).
- [AgentSea.Ingest.Chunker](AgentSea.Ingest.Chunker.md): Splits text into overlapping word windows. Overlap preserves context across
chunk boundaries (so a fact split between two chunks still embeds coherently
in at least one).

- [AgentSea.Ingest.Pipeline](AgentSea.Ingest.Pipeline.md): A `Broadway` pipeline that embeds chunk messages and upserts them into a
vector store. Concurrency, batching, backpressure, and retries are Broadway
settings — there is no hand-rolled scheduler (this is the design's
"EvaluationPipeline parallelism bug is structurally impossible" point).

