mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-03 19:57:35 +00:00
# What does this PR do? on the path to maintainable impls of inference providers. make all configs instances of RemoteInferenceProviderConfig. ## Test Plan ci
26 lines
830 B
Text
26 lines
830 B
Text
---
|
|
description: "OpenAI inference provider for accessing GPT models and other OpenAI services."
|
|
sidebar_label: Remote - Openai
|
|
title: remote::openai
|
|
---
|
|
|
|
# remote::openai
|
|
|
|
## Description
|
|
|
|
OpenAI inference provider for accessing GPT models and other OpenAI services.
|
|
|
|
## Configuration
|
|
|
|
| Field | Type | Required | Default | Description |
|
|
|-------|------|----------|---------|-------------|
|
|
| `allowed_models` | `list[str \| None` | No | | List of models that should be registered with the model registry. If None, all models are allowed. |
|
|
| `api_key` | `str \| None` | No | | API key for OpenAI models |
|
|
| `base_url` | `<class 'str'>` | No | https://api.openai.com/v1 | Base URL for OpenAI API |
|
|
|
|
## Sample Configuration
|
|
|
|
```yaml
|
|
api_key: ${env.OPENAI_API_KEY:=}
|
|
base_url: ${env.OPENAI_BASE_URL:=https://api.openai.com/v1}
|
|
```
|