Whatever message this page gives is out now! Go check it out!
Term | What it means in practice |
Embedding | A list of numbers (a vector) that represents the meaning of a piece of text. Semantically similar texts have numerically similar vectors. CF generates these automatically using an embedding model. |
Vector store | A database optimized for storing and searching embeddings by similarity. CF supports in-memory (for development) and persistent stores (for production). |
Chunking / splitting | Breaking a large document into smaller overlapping pieces before embedding. Chunk size controls the granularity of retrieval. |
Ingestion pipeline | The process of loading documents, splitting them, generating embeddings, and storing them. CF runs this asynchronously and returns a Future. |
Retrieval augmentor | The component that takes a user query, finds relevant chunks, and assembles them into context for the language model. |
Guardrail | A ColdFusion UDF you write that validates or transforms either the user's input or the model's output before it is returned. |
RetrievalAugmentor | The top-level pipeline object that orchestrates query transformation, routing, retrieval, aggregation, and content injection. |