mirror of
https://github.com/langgenius/dify-plugin-daemon.git
synced 2026-07-22 17:56:00 -04:00
27 lines
542 B
YAML
27 lines
542 B
YAML
identity:
|
|
name: {{ .PluginName }}
|
|
author: {{ .Author }}
|
|
label:
|
|
en_US: {{ .PluginName | SnakeToCamel }}
|
|
description:
|
|
en_US: {{ .PluginName | SnakeToCamel }}
|
|
parameters:
|
|
- name: model
|
|
type: model-selector
|
|
scope: tool-call&llm
|
|
required: true
|
|
label:
|
|
en_US: Model
|
|
zh_Hans: 模型
|
|
pt_BR: Model
|
|
- name: tools
|
|
type: array[tools]
|
|
required: true
|
|
label:
|
|
en_US: Tools list
|
|
zh_Hans: 工具列表
|
|
pt_BR: Tools list
|
|
extra:
|
|
python:
|
|
source: strategies/{{ .PluginName }}.py
|