diff --git a/docs/features/chat-features/history-search.mdx b/docs/features/chat-features/history-search.mdx index 106aaa9c7..17104eaea 100644 --- a/docs/features/chat-features/history-search.mdx +++ b/docs/features/chat-features/history-search.mdx @@ -34,8 +34,8 @@ You can search through your conversations using the global search bar in the sid When using a model with **Native Function Calling** enabled (see the [**Central Tool Calling Guide**](/features/plugin/tools#tool-calling-modes-default-vs-native)), models can search through your chat history autonomously. ### Available History Tools: -- **`search_chats`**: The model can search all your previous conversations for a specific topic or fact. -- **`view_chat`**: After finding a relevant chat ID, the model can retrieve and "read" the full message history of that session. +- **`search_chats`**: Simple text search across chat titles and message content. Returns matching chat IDs and snippets. +- **`view_chat`**: Reads and returns the full message history of a specific chat by ID. ### Why use native tool calling for Search? This allows the model to leverage its own previous work. You can ask: *"What was the feedback I got on my last email draft?"* or *"Find the Python script I wrote about image processing two weeks ago."* diff --git a/docs/features/plugin/tools/development.mdx b/docs/features/plugin/tools/development.mdx index 0b315843b..9d5ffb534 100644 --- a/docs/features/plugin/tools/development.mdx +++ b/docs/features/plugin/tools/development.mdx @@ -179,8 +179,8 @@ Agentic tool calling requires **high-quality frontier models** to work reliably. | `write_note` | Create a new private note for the user. | `ENABLE_NOTES` enabled. | | `replace_note_content` | Update an existing note's content or title. | `ENABLE_NOTES` enabled. | | **Chat History** | | | -| `search_chats` | Search across the user's previous conversation history. | Always available. | -| `view_chat` | Retrieve the full message history of a specific previous chat. | Always available. | +| `search_chats` | Simple text search across chat titles and message content. Returns matching chat IDs and snippets. | Always available. | +| `view_chat` | Reads and returns the full message history of a specific chat by ID. | Always available. | | **Channels** | | | | `search_channels` | Find public or accessible channels by name/description. | `ENABLE_CHANNELS` enabled. | | `search_channel_messages` | Search for specific messages inside accessible channels. | `ENABLE_CHANNELS` enabled. | diff --git a/docs/features/plugin/tools/index.mdx b/docs/features/plugin/tools/index.mdx index fd8f7d1e2..4b51bc0b5 100644 --- a/docs/features/plugin/tools/index.mdx +++ b/docs/features/plugin/tools/index.mdx @@ -173,8 +173,8 @@ These models excel at multi-step reasoning, proper JSON formatting, and autonomo | `write_note` | Create a new private note for the user. | `ENABLE_NOTES` enabled. | | `replace_note_content` | Update an existing note's content or title. | `ENABLE_NOTES` enabled. | | **Chat History** | | | -| `search_chats` | Search across the user's previous conversation history. | Always available. | -| `view_chat` | Retrieve the full message history of a specific previous chat. | Always available. | +| `search_chats` | Simple text search across chat titles and message content. Returns matching chat IDs and snippets. | Always available. | +| `view_chat` | Reads and returns the full message history of a specific chat by ID. | Always available. | | **Channels** | | | | `search_channels` | Find public or accessible channels by name/description. | `ENABLE_CHANNELS` enabled. | | `search_channel_messages` | Search for specific messages inside accessible channels. | `ENABLE_CHANNELS` enabled. |