...
準備你的 python code
儲存 id, names, descriptions 以及對應的 python code 放到 plugin.json 中
程式碼區塊 language pyjson { "id": "HelloWorld", "schema_version": "v1", "name_for_human": "HelloWorld", "name_for_model": "HelloWorld", "description_for_human": "HelloWorld", "description_for_model": "Say hello", "auth": { "type": "none" }, "api": { "type": "python", "python": { "source": "print('Hello World')" } } }
...