openai/openai-python

Public

mirrored from https://github.com/openai/openai-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v2.44.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

examples/bedrock.py

15lines · modeblame

d3562752Hayden1 months ago1from openai import OpenAI
2from openai.providers import bedrock
8be32d38Jim Blomo2 months ago3
d3562752Hayden1 months ago4client = OpenAI(
5provider=bedrock(
6region="us-west-2",
7)
8)
8be32d38Jim Blomo2 months ago9
10response = client.responses.create(
11model="openai.gpt-5.4",
12input="Say hello!",
13)
14
15print(response.output_text)