removedInput schema / $defs / ListAddonsInput
Removed value: -{
- "additionalProperties": false,
- "description": "查询插件的输入参数",
- "properties": {
- "addon_name": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "插件名。填写后返回该插件详情与启用状态",
- "title": "Addon Name"
- },
- "enabled_only": {
- "default": false,
- "description": "仅列出已启用的插件",
- "title": "Enabled Only",
- "type": "boolean"
- },
- "query": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "按名称模糊过滤",
- "title": "Query"
- },
- "registry": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "按插件仓库过滤",
- "title": "Registry"
- },
- "response_format": {
- "$ref": "#/$defs/ResponseFormat",
- "default": "markdown"
- }
- },
- "title": "ListAddonsInput",
- "type": "object"
-}
addedInput schema / properties / addon_name
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "插件名。填写后返回该插件详情与启用状态",
+ "title": "Addon Name"
+}
addedInput schema / properties / enabled_only
Added value: +{
+ "default": false,
+ "description": "仅列出已启用的插件",
+ "title": "Enabled Only",
+ "type": "boolean"
+}
removedInput schema / properties / params
Removed value: -{
- "$ref": "#/$defs/ListAddonsInput"
-}
addedInput schema / properties / query
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "按名称模糊过滤",
+ "title": "Query"
+}
addedInput schema / properties / registry
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "按插件仓库过滤",
+ "title": "Registry"
+}
addedInput schema / properties / response_format
Added value: +{
+ "$ref": "#/$defs/ResponseFormat",
+ "default": "markdown"
+}
removedInput schema / required
Removed value: -[
- "params"
-]