dify/api/core/tools
2024-05-24 12:08:12 +08:00
..
docs Feat/tool secret parameter (#2760) 2024-03-08 20:31:13 +08:00
entities chore: remove model as tool (#4409) 2024-05-15 12:25:04 +08:00
model chore: apply ruff's pyupgrade linter rules to modernize Python code with targeted version (#2419) 2024-02-09 15:21:33 +08:00
prompt Refactor/react agent (#3355) 2024-04-11 18:34:17 +08:00
provider improve: extract method for safe loading yaml file and avoid using PyYaml's FullLoader (#4031) 2024-05-24 12:08:12 +08:00
tool support images and tables extract from docx (#4619) 2024-05-23 18:05:23 +08:00
utils improve: extract method for safe loading yaml file and avoid using PyYaml's FullLoader (#4031) 2024-05-24 12:08:12 +08:00
errors.py FEAT: NEW WORKFLOW ENGINE (#3160) 2024-04-08 18:51:46 +08:00
README_CN.md Feat/assistant app (#2086) 2024-01-23 19:58:23 +08:00
README.md Feat/assistant app (#2086) 2024-01-23 19:58:23 +08:00
tool_engine.py fix/dataset-retriever-tool-parameter-redundancy (#3418) 2024-04-12 17:04:36 +08:00
tool_file_manager.py Update requirements.txt with latest OSS package with AuthV4 support (#4425) 2024-05-20 17:26:07 +08:00
tool_manager.py chore: apply and fix flake8-bugbear lint rules (#4496) 2024-05-20 16:34:13 +08:00

Tools

This module implements built-in tools used in Agent Assistants and Workflows within Dify. You could define and display your own tools in this module, without modifying the frontend logic. This decoupling allows for easier horizontal scaling of Dify's capabilities.

Feature Introduction

The tools provided for Agents and Workflows are currently divided into two categories:

  • Built-in Tools are internally implemented within our product and are hardcoded for use in Agents and Workflows.
  • Api-Based Tools leverage third-party APIs for implementation. You don't need to code to integrate these -- simply provide interface definitions in formats like OpenAPI , Swagger, or the OpenAI-plugin on the front-end.

Built-in Tool Providers

Alt text

API Tool Providers

Alt text

Tool Integration

To enable developers to build flexible and powerful tools, we provide two guides:

Quick Integration 👈🏻

Quick integration aims at quickly getting you up to speed with tool integration by walking over an example Google Search tool.

Advanced Integration 👈🏻

Advanced integration will offer a deeper dive into the module interfaces, and explain how to implement more complex capabilities, such as generating images, combining multiple tools, and managing the flow of parameters, images, and files between different tools.