Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions openai/api_resources/chat_completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def create(cls, *args, **kwargs):
"""
Creates a new chat completion for the provided messages and parameters.

See https://platform.openai.com/docs/api-reference/chat-completions/create
See https://platform.openai.com/docs/api-reference/chat/create
for a list of valid parameters.
"""
start = time.time()
Expand All @@ -34,7 +34,7 @@ async def acreate(cls, *args, **kwargs):
"""
Creates a new chat completion for the provided messages and parameters.

See https://platform.openai.com/docs/api-reference/chat-completions/create
See https://platform.openai.com/docs/api-reference/chat/create
for a list of valid parameters.
"""
start = time.time()
Expand Down