Give a model access to live web search by appending the :online suffix.
Not yet available.
The :online variant augments a model's response with real-time web search results. Before generating an answer, the model issues a search query, retrieves fresh pages, and incorporates the retrieved content. You get a grounded, up-to-date answer with source citations — no RAG pipeline or browser tool required on your end.
OpenDunes injects a web search tool into the model's context. The model decides when to search — not every request triggers a search. If the model determines the question can be answered from its training data, it may skip the search step. Queries that are time-sensitive, location-specific, or explicitly about recent events reliably trigger a search.
The search step adds latency (typically 1–4 seconds) before the model starts generating. Use streaming ("stream": true) so the user sees the response as soon as generation begins.
When search results are used, the response content includes inline citations with numbered references:
The citation format follows the model's natural output — it is part of the generated text, not a separate structured field.
The :online variant is available on models that support tool use (the web search capability is implemented as a tool call internally). Check the catalog for models with capability: online or filter:
Online requests are billed at two rates:
Retrieved web content added to the context counts as prompt tokens. Long web pages in context can meaningfully increase the token count — monitor the usage field in the response.
Note. The
:onlinevariant is not a substitute for a full RAG pipeline over your own data. It searches the public web. For retrieval over your own documents, build a retrieval step and pass results inmessagesdirectly.