Tools Hidden in UI
# support
c
Some tools I've created a while ago and use across multiple agents are not visible in the UI anymore. However, they're available when calling the ID via API. The tool is also now only showing up via ID on the agents it's connected to vs instead of its name. Will this cause issues when referencing the tool by name (instead of ID) in the prompt?
v
To avoid issues, always reference your tool by its exact name in assistant prompts, not by ID. For example, if your tool is named
get_weather
, use:
Copy code
text
Use the get_weather tool to fetch the current weather.
This ensures the assistant triggers the correct tool, even if it's not visible in the UI, as long as the configuration is correct. For more details, see the [custom tools troubleshooting guide](https://docs.vapi.ai/tools/custom-tools-troubleshooting). Source: - [Custom tools troubleshooting](https://docs.vapi.ai/tools/custom-tools-troubleshooting)
c
Hi Cole, It's important to consistently reference your tools by their exact name in assistant prompts rather than their ID. This ensures that your assistant uses the correct tool, even if its name isn't visible in the UI. As long as the configuration is correct and the tool is integrated properly in the assistant, using the tool's name will not cause issues. If the tool is still accessible via API and functions normally via ID, it should work without problems when referenced by name in prompts. For troubleshooting, you can refer to the [custom tools troubleshooting guide](https://docs.vapi.ai/tools/custom-tools-troubleshooting).