You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/models.md
+9-16
Original file line number
Diff line number
Diff line change
@@ -53,21 +53,14 @@ async def main():
53
53
54
54
## Using other LLM providers
55
55
56
-
Many providers also support the OpenAI API format, which means you can pass a `base_url` to the existing OpenAI model implementations and use them easily. `ModelSettings` is used to configure tuning parameters (e.g., temperature, top_p) for the model you select.
56
+
You can use other LLM providers in 3 ways (examples [here](https://github.com/openai/openai-agents-python/tree/main/examples/model_providers/)):
57
57
58
-
```python
59
-
external_client = AsyncOpenAI(
60
-
api_key="EXTERNAL_API_KEY",
61
-
base_url="https://api.external.com/v1/",
62
-
)
58
+
1.[`set_default_openai_client`][agents.set_default_openai_client] is useful in cases where you want to globally use an instance of `AsyncOpenAI` as the LLM client. This is for cases where the LLM provider has an OpenAI compatible API endpoint, and you can set the `base_url` and `api_key`. See a configurable example in [examples/model_providers/custom_example_global.py](https://github.com/openai/openai-agents-python/tree/main/examples/model_providers/custom_example_global.py).
59
+
2.[`ModelProvider`][agents.models.interface.ModelProvider] is at the `Runner.run` level. This lets you say "use a custom model provider for all agents in this run". See a configurable example in [examples/model_providers/custom_example_provider.py](https://github.com/openai/openai-agents-python/tree/main/examples/model_providers/custom_example_provider.py).
60
+
3.[`Agent.model`][agents.agent.Agent.model] lets you specify the model on a specific Agent instance. This enables you to mix and match different providers for different agents. See a configurable example in [examples/model_providers/custom_example_agent.py](https://github.com/openai/openai-agents-python/tree/main/examples/model_providers/custom_example_agent.py).
63
61
64
-
spanish_agent = Agent(
65
-
name="Spanish agent",
66
-
instructions="You only speak Spanish.",
67
-
model=OpenAIChatCompletionsModel(
68
-
model="EXTERNAL_MODEL_NAME",
69
-
openai_client=external_client,
70
-
),
71
-
model_settings=ModelSettings(temperature=0.5),
72
-
)
73
-
```
62
+
In cases where you do not have an API key from `platform.openai.com`, we recommend disabling tracing via `set_tracing_disabled()`, or setting up a [different tracing processor](tracing.md).
63
+
64
+
!!! note
65
+
66
+
In these examples, we use the Chat Completions API/model, because most LLM providers don't yet support the Responses API. If your LLM provider does support it, we recommend using Responses.
0 commit comments