Skip to content

Commit

Permalink
chore(cli): fix typo in completions (#986)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Dec 18, 2023
1 parent d1e9e8f commit 626bc34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/async_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

async def main() -> None:
stream = await client.completions.create(
model="gpt-3.5-turbo-instruct",
model="text-davinci-003",
prompt="Say this is a test",
stream=True,
)
Expand Down
4 changes: 2 additions & 2 deletions examples/streaming.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def sync_main() -> None:
client = OpenAI()
response = client.completions.create(
model="gpt-3.5-turbo-instruct",
model="text-davinci-002",
prompt="1,2,3,",
max_tokens=5,
temperature=0,
Expand All @@ -33,7 +33,7 @@ def sync_main() -> None:
async def async_main() -> None:
client = AsyncOpenAI()
response = await client.completions.create(
model="gpt-3.5-turbo-instruct",
model="text-davinci-002",
prompt="1,2,3,",
max_tokens=5,
temperature=0,
Expand Down

0 comments on commit 626bc34

Please sign in to comment.