For AI agents: docs.octen.ai/capabilities/answer.md
Getting from a question to a grounded answer takes a pipeline: decompose the question, run the searches, feed results to a model, synthesize, and keep track of sources. Octen Answer runs that pipeline in one call: it decomposes your messages into sub-queries, searches them, and synthesizes an answer with an LLM, returning the sources it used. For the full list of parameters, see the Answer API reference.Why Answer
- One call, complete loop. A question goes in; a grounded answer comes out. No search, prompt, and synthesis plumbing to build or maintain.
- Multi-angle grounding. Questions decompose into multiple sub-queries, so the answer draws on wider coverage.
- Citable answers. The sub-queries and sources come back with the answer, so replies can link to the pages they stand on.
How It Works
- Send a question or a conversation.
- Octen decomposes it into sub-queries and searches them concurrently.
- A model synthesizes an answer grounded in the results; the response returns the answer together with the sub-queries and sources used.
Scenarios
Ask a question
One message in, one grounded answer out, with the sub-queries and sources it drew on.Build a grounded chat assistant
In a conversation, questions build on each other. Pass the chat history along, and every reply stays grounded in live search, with follow-ups understood in context.Get the full picture on a broad topic
Some questions are really many questions: a market, a technology, a policy area. Answer decomposes them into up to 30 sub-queries and returns a structured Markdown answer that covers the topic angle by angle, cited throughout.Answer from sources you trust
When answers must stand on vetted sources, such as in finance or news products, constrain the searches behind the answer. Answer accepts the same search options as Web Search.Next Steps
Try in Console
Run Answer live in the Octen console.
Answer API Reference
Full request/response schema.