mirror of
https://github.com/langgenius/dify-docs.git
synced 2026-03-27 13:28:32 +07:00
59 lines
2.7 KiB
Plaintext
59 lines
2.7 KiB
Plaintext
---
|
||
dimensions:
|
||
type:
|
||
primary: implementation
|
||
detail: advanced
|
||
level: beginner
|
||
standard_title: Reverse Invocation
|
||
language: zh
|
||
title: 反向调用 Dify 服务
|
||
description: 本文档简要介绍了Dify插件的反向调用能力,即插件可以调用Dify主平台内的指定服务。文档列出了四类可被调用的模块:App(访问App数据)、Model(调用平台内的模型能力)、Tool(调用平台内的其他工具插件)和Node(调用Chatflow/Workflow应用内的节点)。
|
||
---
|
||
|
||
插件可以自由调用 Dify 主平台内的部分服务,用以提升插件的能力。
|
||
|
||
### 可被调用的 Dify 模块
|
||
|
||
* [App](/plugin_dev_zh/9242-reverse-invocation-app.zh)
|
||
|
||
插件能够访问 Dify 平台内 App 的数据。
|
||
* [Model](/plugin_dev_zh/9242-reverse-invocation-model.zh)
|
||
|
||
插件能够反向调用 Dify 平台内的 LLM 能力,包括平台内的所有模型类型与功能,例如 TTS、Rerank 等。
|
||
* [Tool](/plugin_dev_zh/9242-reverse-invocation-tool.zh)
|
||
|
||
插件能够调用 Dify 平台内的其它工具类型插件。
|
||
* [Node](/plugin_dev_zh/9243-reverse-invocation-node.zh)
|
||
|
||
插件能够调用 Dify 平台内某个 Chatflow/Workflow 应用内的节点。
|
||
|
||
## 相关资源
|
||
|
||
- [开发 Extension 插件](/plugin_dev_zh/9231-extension-plugin.zh) - 学习如何开发与外部系统集成的插件
|
||
- [开发 Slack Bot 插件](/plugin_dev_zh/0432-develop-a-slack-bot-plugin.zh) - 使用反向调用实现与 Slack 平台集成的实例
|
||
- [Bundle 类型插件](/plugin_dev_zh/9241-bundle.zh) - 了解如何打包多个使用反向调用的插件
|
||
- [使用持久化存储](/plugin_dev_zh/0411-persistent-storage-kv.zh) - 通过 KV 存储提升插件能力
|
||
|
||
{/*
|
||
Contributing Section
|
||
DO NOT edit this section!
|
||
It will be automatically generated by the script.
|
||
*/}
|
||
|
||
<CardGroup cols="2">
|
||
<Card
|
||
title="编辑此页面"
|
||
icon="pen-to-square"
|
||
href="https://github.com/langgenius/dify-docs-mintlify/edit/main/plugin_dev_zh/9241-reverse-invocation.zh.mdx"
|
||
>
|
||
通过直接提交修改来帮助改进文档内容
|
||
</Card>
|
||
<Card
|
||
title="提交问题"
|
||
icon="github"
|
||
href="https://github.com/langgenius/dify-docs-mintlify/issues/new?title=文档问题%3A%20reverse-invocation&body=%23%23%20问题描述%0A%3C%21--%20请简要描述您发现的问题%20--%3E%0A%0A%23%23%20页面链接%0Ahttps%3A%2F%2Fgithub.com%2Flanggenius%2Fdify-docs-mintlify%2Fblob%2Fmain%2Fplugin_dev_zh%2F9241-reverse-invocation.zh.mdx%0A%0A%23%23%20建议修改%0A%3C%21--%20如果有具体的修改建议,请在此说明%20--%3E%0A%0A%3C%21--%20感谢您对文档质量的关注!%20--%3E"
|
||
>
|
||
发现错误或有改进建议?请提交问题反馈
|
||
</Card>
|
||
</CardGroup>
|