/answer endpoint now takes a model parameter that selects the answer tier. It defaults to seltz-base (one grounding search on your query as written, then a direct answer); seltz-pro runs agentic RAG over that same single grounding search — the model reads your request and issues the search query itself, then answers from the results.
Highlights
- New
modelparameter —seltz-base(default) orseltz-pro - Same response shape — Only the answering strategy changes; citations work exactly as before
- Safe default — An omitted or unrecognized
modelfalls back toseltz-base, no error - Available everywhere — Python SDK
1.6.0, TypeScript SDK2.4.0, and RESTPOST /v1/answer
Quick Start
Get Started
View the answer endpoint documentation