Files
admin777 b631acd42e feat: 将插件 stdin 协议定为 v1,并按声明注入凭据
进程外插件改为只读环境变量和自身配置,避免读宿主 appsettings;宿主按 plugin.json 声明注入 LLM / OpenWeather 等凭据。
2026-09-11 10:46:52 +08:00

35 lines
1.0 KiB
JSON

{
"id": "fileCity",
"name": "FileCityAgent",
"description": "读取指定文本文件,判断并抽出有效城市名。",
"version": "1.0.0",
"protocolVersion": 1,
"timeoutSeconds": 120,
"launch": {
"command": "dotnet",
"args": ["FileCityPlugin.dll"]
},
"credentials": [
{
"name": "llm",
"type": "openai-compatible",
"required": true,
"description": "由宿主注入 OpenAI 兼容的 endpoint / apiKey / model,不要写进本文件。"
}
],
"inputs": [
{
"name": "filePath",
"type": "string",
"required": true,
"description": "本地文件路径,例如 Data/cities.txt"
}
],
"outputs": [
{ "name": "hasValidCities", "type": "bool", "description": "是否存在有效城市" },
{ "name": "cities", "type": "string[]", "description": "有效城市名列表" },
{ "name": "reason", "type": "string", "description": "判断说明" },
{ "name": "raw", "type": "string", "description": "Agent 原始文本" }
]
}