-
Notifications
You must be signed in to change notification settings - Fork 33
user guide - models - openai #45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# OpenAI | ||
|
||
[OpenAI](https://platform.openai.com/docs/overview) is an AI research and deployment company that provides a suite of powerful language models. The Strands Agents SDK implements an OpenAI provider, allowing you to run agents against any OpenAI or OpenAI-compatible model. | ||
|
||
## Installation | ||
|
||
OpenAI is configured as an optional dependency in Strands Agents. To install, run: | ||
|
||
```bash | ||
pip install 'strands-agents[openai]' | ||
``` | ||
|
||
## Usage | ||
|
||
After installing `openai`, you can import and initialize the Strands Agents' OpenAI provider as follows: | ||
|
||
```python | ||
from strands import Agent | ||
from strands.models.openai import OpenAIModel | ||
from strands_tools import calculator | ||
|
||
model = OpenAIModel( | ||
client_args={ | ||
"api_key": "<KEY>", | ||
}, | ||
# **model_config | ||
model_id="gpt-4o", | ||
params={ | ||
"max_tokens": 1000, | ||
"temperature": 0.7, | ||
} | ||
) | ||
|
||
agent = Agent(model=model, tools=[calculator]) | ||
response = agent("What is 2+2") | ||
print(response) | ||
``` | ||
|
||
To connect to a custom OpenAI-compatible server, you will pass in its `base_url` into the `client_args`: | ||
|
||
```python | ||
model = OpenAIModel( | ||
client_args={ | ||
"api_key": "<KEY>", | ||
"base_url": "<URL>", | ||
}, | ||
... | ||
) | ||
``` | ||
|
||
## Configuration | ||
|
||
### Client Configuration | ||
|
||
The `client_args` configure the underlying OpenAI client. For a complete list of available arguments, please refer to the OpenAI [source](https://github.com/openai/openai-python). | ||
|
||
### Model Configuration | ||
|
||
The `model_config` configures the underlying model selected for inference. The supported configurations are: | ||
|
||
| Parameter | Description | Example | Options | | ||
|------------|-------------|---------|---------| | ||
| `model_id` | ID of a model to use | `gpt-4o` | [reference](https://platform.openai.com/docs/models) | ||
| `params` | Model specific parameters | `{"max_tokens": 1000, "temperature": 0.7}` | [reference](https://platform.openai.com/docs/api-reference/chat/create) | ||
|
||
## Troubleshooting | ||
|
||
### Module Not Found | ||
|
||
If you encounter the error `ModuleNotFoundError: No module named 'openai'`, this means you haven't installed the `openai` dependency in your environment. To fix, run `pip install 'strands-agents[openai]'`. | ||
|
||
## References | ||
|
||
- [API](../../../api-reference/models.md) | ||
- [OpenAI](https://platform.openai.com/docs/overview) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.