Openai
Resource for authentication to the OpenAI API
| 1 | { |
| 2 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 3 | "order": [ |
| 4 | "api_key", |
| 5 | "organization_id", |
| 6 | "base_url" |
| 7 | ], |
| 8 | "properties": { |
| 9 | "api_key": { |
| 10 | "default": "", |
| 11 | "description": "", |
| 12 | "type": "string" |
| 13 | }, |
| 14 | "base_url": { |
| 15 | "default": "", |
| 16 | "description": "Optional. Only needed to overwrite the default base URL.", |
| 17 | "type": "string" |
| 18 | }, |
| 19 | "organization_id": { |
| 20 | "default": "", |
| 21 | "description": "Only needs to be set for users who belong to multiple organizations and they want to use an organization other than the default one", |
| 22 | "type": "string" |
| 23 | } |
| 24 | }, |
| 25 | "required": [ |
| 26 | "api_key" |
| 27 | ], |
| 28 | "type": "object" |
| 29 | } |