What it is
Tools extend what the AI can do, allowing it to perform specific actions and integrations (e.g., querying an external system or processing data). A tool is defined by Python code and can be used by agents or attached to a chat message.Technical/advanced feature. Creating tools requires programming knowledge (Python). However, using already-created tools is simple and requires no programming.
How to access
- Sidebar → Tools
- To create: New → Tool button or the creation button on the page itself.
The page only appears if the Workspace module and the Tools permission are enabled for you.
Use a tool (simple usage)
- In chat: type
$in the message or use + → Attach tool and select the tool. You can attach up to 2 tools per message. - In an agent: in the agent’s advanced parameters block, in the tool selection, check the tools it can use (see Agents).
Create a tool (technical usage)
On the creation screen, you use the tool editor, where you define:- ID and Name of the tool.
- Description (metadata).
- Python code that implements the tool.
- Valves (configurable parameters) — values that adjust tool behavior without changing the code.
- Access control (Share) — which users/groups can use it.
Edit and share
- Edit: open a tool from the list to change code, metadata, and valves.
- Share: define who can use (“Can use”) the tool.
Best practices
- Give clear names and descriptions so others understand what the tool does.
- Use valves to make the tool configurable without rewriting code.
- Share tools only with those who really need them.
- Test the tool in a conversation before making it widely available.
Frequently asked questions
Do I need to program to use tools?
Do I need to program to use tools?
Not to use them. Only to create/edit a tool’s code.
How many tools can I use per message?
How many tools can I use per message?
Up to 2 per message.
The tool doesn't save and shows a version error. What is it?
The tool doesn't save and shows a version error. What is it?
The tool requires a newer version of the platform than what’s installed. Update the platform or adjust the required version in the code.
Known limitations
- Creating tools requires knowledge of Python.
- Maximum of 2 tools per message in chat.
- Saving is blocked if the version required by the tool is greater than the platform version.
- Creating/editing depends on the Tools permission in the Workspace.