| title | xAI |
|---|---|
| slug | ../xai |
Discover xAI models here
Get an API key from the xAI Console
```yaml title="config.yaml" name: My Config version: 0.0.1 schema: v1models: - name: <MODEL_NAME> provider: xai model: <MODEL_ID> apiKey: <YOUR_XAI_API_KEY>
</Tab>
<Tab title="JSON (Deprecated)">
```json title="config.json"
{
"models": [
{
"title": "<MODEL_NAME>",
"provider": "xai",
"model": "<MODEL_ID>",
"apiKey": "<YOUR_XAI_API_KEY>"
}
]
}