Merge pull request #1117 from josephsellers/fix/agentic-search-default-features-docs

This commit is contained in:
Classic298
2026-03-02 17:45:15 +01:00
committed by GitHub

View File

@@ -31,14 +31,15 @@ To unlock these features, your model must support native tool calling and have s
1. **Enable Web Search Globally**: Ensure a search engine is configured in **Admin Panel → Settings → Web Search**.
2. **Enable Model Capability**: In **Admin Panel → Settings → Models**, select your model and enable the **Web Search** capability.
3. **Enable Native Mode (Agentic Mode)**:
3. **Enable Default Feature**: In the same model settings, under **Default Features**, check **Web Search**. This controls whether the `search_web` and `fetch_url` tools are available by default in new chat sessions.
4. **Enable Native Mode (Agentic Mode)**:
* In the same model settings, under **Advanced Parameters**, set **Function Calling** to `Native`.
4. **Use a Quality Model**: Ensure you're using a frontier model with strong reasoning capabilities for best results.
5. **Use a Quality Model**: Ensure you're using a frontier model with strong reasoning capabilities for best results.
:::tip Model Capability vs. Chat Toggle
In **Native Mode**, the `search_web` and `fetch_url` tools are automatically included based on the model's `web_search` capability setting. The chat toggle is not required.
:::tip Model Capability, Default Features, and Chat Toggle
In **Native Mode**, the `search_web` and `fetch_url` tools require both the **Web Search** capability to be enabled *and* **Web Search** to be checked under **Default Features** in the model settings (or toggled on in the chat). If either is missing, the tools will not be injected — even though other builtin tools may still appear.
In **Default Mode** (non-native), the chat toggle still controls whether web search is performed via RAG-style injection.
In **Default Mode** (non-native), the chat toggle controls whether web search is performed via RAG-style injection.
**Important**: If you disable the `web_search` capability on a model but use Native Mode, the tools won't be available even if you manually toggle Web Search on in the chat.
:::