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
According to the Typescript library, tool_calls is defined as tool_calls?: Array<ChatCompletionMessageToolCall> and the Python library allows tool_calls to be null - however, this OpenAPI spec defines tool_calls on ChatCompletionRequestAssistantMessage as a ref to ChatCompletionMessageToolCalls which is defined as an array of items who ref to ChatCompletionMessageToolCall
This causes tool_calls: null to fail validation.
The text was updated successfully, but these errors were encountered:
According to the Typescript library,
tool_calls
is defined astool_calls?: Array<ChatCompletionMessageToolCall>
and the Python library allowstool_calls
to be null - however, this OpenAPI spec definestool_calls
onChatCompletionRequestAssistantMessage
as a ref toChatCompletionMessageToolCalls
which is defined as an array of items who ref toChatCompletionMessageToolCall
This causes
tool_calls: null
to fail validation.The text was updated successfully, but these errors were encountered: