Groq
Groq resource type schema.
| 1 | { |
| 2 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 3 | "order": [ |
| 4 | "api_key", |
| 5 | "base_url" |
| 6 | ], |
| 7 | "properties": { |
| 8 | "api_key": { |
| 9 | "default": "", |
| 10 | "description": "", |
| 11 | "nullable": false, |
| 12 | "password": true, |
| 13 | "type": "string" |
| 14 | }, |
| 15 | "base_url": { |
| 16 | "default": "", |
| 17 | "description": "Optional. Only needed to overwrite the default base URL.", |
| 18 | "type": "string" |
| 19 | } |
| 20 | }, |
| 21 | "required": [ |
| 22 | "api_key" |
| 23 | ], |
| 24 | "type": "object" |
| 25 | } |