Skip to content
Merged

update #1012

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/features/chat-features/history-search.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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."*
Expand Down
4 changes: 2 additions & 2 deletions docs/features/plugin/tools/development.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
4 changes: 2 additions & 2 deletions docs/features/plugin/tools/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down