OpenAI Model Configuration
This section provides details on configuring OpenAI models for use in the MADA Orchestrator.
Fields
All fields, besides extra, can be either a literal value or an environment variable.
| Field Name | Description | Required? |
|---|---|---|
provider |
The provider name, must be openai. |
Yes |
model |
The name of the OpenAI model to use (e.g., "gpt-4"). | Yes |
api_key |
The API key for authentication. In addition to being either a literal value or an environment variable, this can also be a file path. | Yes |
base_url |
The base URL of the OpenAI API endpoint. | Yes |
verify |
TLS verification setting. Use true for env/system trust resolution, false to disable verification, or a CA bundle path. |
No |
extra |
Additional settings (e.g., temperature, max_tokens). | No |
When verify is true, MADA resolves TLS verification from SSL_CERT_FILE,
then REQUESTS_CA_BUNDLE, then the system trust store.