Azure Openai
Azure Openai resource type schema.
| 1 | { |
| 2 | "type": "object", |
| 3 | "order": [ |
| 4 | "apiKey", |
| 5 | "baseUrl" |
| 6 | ], |
| 7 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 8 | "required": [ |
| 9 | "apiKey", |
| 10 | "baseUrl" |
| 11 | ], |
| 12 | "properties": { |
| 13 | "apiKey": { |
| 14 | "type": "string", |
| 15 | "default": "", |
| 16 | "nullable": false, |
| 17 | "password": true, |
| 18 | "description": "" |
| 19 | }, |
| 20 | "baseUrl": { |
| 21 | "type": "string", |
| 22 | "default": "", |
| 23 | "nullable": false, |
| 24 | "description": "https://<YOUR_RESOURCE_NAME>.openai.azure.com/openai" |
| 25 | } |
| 26 | } |
| 27 | } |