mirror of
https://github.com/langgenius/dify-plugin-daemon.git
synced 2026-07-22 01:35:24 -04:00
dbbc4a29cc
* feat: update template * feat: update ja_JP * feat: update GUIDE.md
33 lines
785 B
YAML
33 lines
785 B
YAML
identity:
|
|
name: {{ .PluginName }}
|
|
author: {{ .Author }}
|
|
label:
|
|
en_US: "{{ .PluginName | SnakeToCamel }}"
|
|
zh_Hans: "{{ .PluginName | SnakeToCamel }}"
|
|
ja_JP: "{{ .PluginName | SnakeToCamel }}"
|
|
description:
|
|
en_US: "{{ .PluginName | SnakeToCamel }}"
|
|
zh_Hans: "{{ .PluginName | SnakeToCamel }}"
|
|
ja_JP: "{{ .PluginName | SnakeToCamel }}"
|
|
parameters:
|
|
- name: model
|
|
type: model-selector
|
|
scope: tool-call&llm
|
|
required: true
|
|
label:
|
|
en_US: Model
|
|
zh_Hans: 模型
|
|
pt_BR: Model
|
|
ja_JP: モデル
|
|
- name: tools
|
|
type: array[tools]
|
|
required: true
|
|
label:
|
|
en_US: Tools list
|
|
zh_Hans: 工具列表
|
|
pt_BR: Tools list
|
|
ja_JP: ツールリスト
|
|
extra:
|
|
python:
|
|
source: strategies/{{ .PluginName }}.py
|