When calling functions with no input arguments it gives this error
response = openai_client.chat.completions.create(timeout=10,
File "/usr/local/lib/python3.9/site-packages/openai/_utils/_utils.py", line 299, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python3.9/site-packages/openai/resources/chat/completions.py", line 556, in create
return self._post(
File "/usr/local/lib/python3.9/site-packages/openai/_base_client.py", line 1055, in post
return cast(ResponseT, self.request(cast_to, opts, stream=stream, stream_cls=stream_cls))
File "/usr/local/lib/python3.9/site-packages/openai/_base_client.py", line 834, in request
return self._request(
File "/usr/local/lib/python3.9/site-packages/openai/_base_client.py", line 877, in _request
raise self._make_status_error_from_response(err.response) from None
openai.OpenAIError: Error code: 400 - {'error': {'message': "None is not of type 'object' - 'messages.2.function_call'", 'type': 'invalid_request_error', 'param': None, 'code': None}}
This used to work before the recent updates.
An example of the function I try to call:
tools = [
{
"type": "function",
"function": {
"name": "escalate_to_manager",
"description": "Contact the manager when there is nothing else that can be done",
"parameters": {
"type": "object",
"properties": {},
"required": [],
},
}
}
]
And I am calling the chat completion normally:
response = client.chat.completions.create(timeout=10,
model="gpt-3.5-turbo-1106",
messages=messages,
tools=tools,
tool_choice="auto",
temperature=0,
)