Reverse Model Request refers to the plugin's ability to make reverse requests to LLM capabilities within Dify, including all model types and features on the platform, such as TTS, Rerank, etc.
Note that requesting models requires passing a ModelConfig type parameter. Its structure can be referenced in Common Specification Definitions, and this structure will have slight differences for different types of models.
For example, for LLM type models, it needs to include completion_params and mode parameters. You can manually build this structure or use model-selector type parameters or configuration.
Notice that the query parameter from tool_parameters is passed in the code.
Best Practices
It's not recommended to manually build LLMModelConfig. Instead, allow users to select their desired model in the UI. In this case, you can modify the tool's parameter list by adding a model parameter according to the following configuration:
identity:name:llmauthor:Difylabel:en_US:LLMzh_Hans:LLMpt_BR:LLMdescription:human:en_US:A tool for invoking a large language modelzh_Hans:用于调用大型语言模型的工具pt_BR:A tool for invoking a large language modelllm:A tool for invoking a large language modelparameters: - name:prompttype:stringrequired:truelabel:en_US:Prompt stringzh_Hans:提示字符串pt_BR:Prompt stringhuman_description:en_US:used for searchingzh_Hans:用于搜索网页内容pt_BR:used for searchingllm_description:key words for searchingform:llm - name:modeltype:model-selectorscope:llmrequired:truelabel:en_US:Modelzh_Hans:使用的模型pt_BR:Modelhuman_description:en_US:Modelzh_Hans:使用的模型pt_BR:Modelllm_description:which Model to invokeform:formextra:python:source:tools/llm.py
Note that in this example, the model's scope is specified as llm, so users can only select llm type parameters. This allows you to modify the above example code as follows:
Note: The bytes stream returned by the TTS endpoint is an mp3 audio byte stream, with each iteration returning a complete audio. If you want to perform more in-depth processing tasks, please select an appropriate library.