Anthropic
Anthropic resource type schema.
| 1 | { |
| 2 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 3 | "order": [ |
| 4 | "apiKey", |
| 5 | "base_url", |
| 6 | "platform" |
| 7 | ], |
| 8 | "properties": { |
| 9 | "apiKey": { |
| 10 | "default": "", |
| 11 | "description": "", |
| 12 | "type": "string" |
| 13 | }, |
| 14 | "base_url": { |
| 15 | "default": "", |
| 16 | "description": "Optional. Only needed to overwrite the default base URL. For google_vertex_ai: https://{region}-aiplatform.googleapis.com/v1/projects/{project_id}/locations/{region}/publishers/anthropic/models/", |
| 17 | "type": "string" |
| 18 | }, |
| 19 | "platform": { |
| 20 | "default": "standard", |
| 21 | "description": "Platform to use for Anthropic API.", |
| 22 | "enum": [ |
| 23 | "standard", |
| 24 | "google_vertex_ai" |
| 25 | ], |
| 26 | "type": "string" |
| 27 | } |
| 28 | }, |
| 29 | "required": [ |
| 30 | "apiKey" |
| 31 | ], |
| 32 | "type": "object" |
| 33 | } |