ToolJet/marketplace/plugins/openai/lib/manifest.json
Arpit 6d2e2046cf
Feature : OpenAI plugin (#5975)
* openai plugin init

* admin private route with admin access only

* update dev mode check
2023-04-11 11:07:27 +05:30

43 lines
No EOL
1.1 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "OpenAI plugin",
"description": "A schema defining OpenAI datasource",
"type": "api",
"source": {
"name": "OpenAI",
"kind": "openai",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {
"apiKey": {
"type": "string",
"encrypted": true
},
"organizationId": {
"type": "string"
}
}
},
"defaults": {},
"properties": {
"apiKey": {
"label": "API Key",
"key": "apiKey",
"type": "password",
"description": "Enter your OpenAI API Key",
"helpText": "For generating API Key, visit: <a href='https://beta.openai.com/account/api-keys' target='_blank' rel='noreferrer'>OpenAI Console</a>"
},
"organizationId": {
"label": "Organization ID",
"key": "organizationId",
"type": "text",
"description": "Enter your OpenAI Organization ID"
}
},
"required": [
"apiKey"
]
}