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
35 lines
899 B
YAML
35 lines
899 B
YAML
identity:
|
|
name: "{{ .PluginName }}"
|
|
author: "{{ .Author }}"
|
|
label:
|
|
en_US: "{{ .PluginName }}"
|
|
zh_Hans: "{{ .PluginName }}"
|
|
pt_BR: "{{ .PluginName }}"
|
|
ja_JP: "{{ .PluginName }}"
|
|
description:
|
|
human:
|
|
en_US: "{{ .PluginDescription }}"
|
|
zh_Hans: "{{ .PluginDescription }}"
|
|
pt_BR: "{{ .PluginDescription }}"
|
|
ja_JP: "{{ .PluginDescription }}"
|
|
llm: "{{ .PluginDescription }}"
|
|
parameters:
|
|
- name: query
|
|
type: string
|
|
required: true
|
|
label:
|
|
en_US: Query string
|
|
zh_Hans: 查询语句
|
|
pt_BR: Query string
|
|
ja_JP: クエリ文字列
|
|
human_description:
|
|
en_US: "{{ .PluginDescription }}"
|
|
zh_Hans: "{{ .PluginDescription }}"
|
|
pt_BR: "{{ .PluginDescription }}"
|
|
ja_JP: "{{ .PluginDescription }}"
|
|
llm_description: "{{ .PluginDescription }}"
|
|
form: llm
|
|
extra:
|
|
python:
|
|
source: tools/{{ .PluginName }}.py
|