I’m experimenting with function calling for our usecases and I was wondering if there is a limit to how many functions can be passed to the functions
parameter via the API
response = openai.ChatCompletion.create(
model="gpt-3.5-turbo-0613",
messages=messages,
functions=functions,
function_call="auto", # auto is default, but we'll be explicit
)
Is there a hard limit on these? Or is there a limit on the functions description JSON that can be provided (does that get counted in the tokens limit?)
Thank you for any help