For the complete documentation index, see llms.txt. This page is also available as Markdown.

Data Skills (RAG)

Search and answer from your own knowledge.

Skills that work against your data rather than the model's training.

  • RAG Query — ask a question of a knowledge base and get an answer grounded in it.

  • Vector Search — retrieve documents by meaning, and handle them yourself.

  • Ruleset — apply complex business rules and emit an outcome.

RAG Query retrieves and answers. Vector Search retrieves and stops. Reach for RAG Query when you want the answer; reach for Vector Search when you want the material.

For how retrieval works and why, see Knowledge & Context.

Last updated