Customai
Any OpenAI API compatible provider
| 1 | { |
| 2 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 3 | "order": [ |
| 4 | "api_key", |
| 5 | "base_url", |
| 6 | "headers" |
| 7 | ], |
| 8 | "properties": { |
| 9 | "api_key": { |
| 10 | "default": "", |
| 11 | "description": "", |
| 12 | "password": true, |
| 13 | "type": "string" |
| 14 | }, |
| 15 | "base_url": { |
| 16 | "default": "", |
| 17 | "description": "e.g. https://my.custom.provider/v1", |
| 18 | "nullable": false, |
| 19 | "placeholder": "", |
| 20 | "type": "string" |
| 21 | }, |
| 22 | "headers": { |
| 23 | "additionalProperties": { |
| 24 | "type": "string" |
| 25 | }, |
| 26 | "default": {}, |
| 27 | "description": "Custom HTTP headers to include in AI requests", |
| 28 | "type": "object" |
| 29 | } |
| 30 | }, |
| 31 | "required": [ |
| 32 | "base_url" |
| 33 | ], |
| 34 | "type": "object" |
| 35 | } |