I have a use case where I only want gpt-3.5-turbo to always return one of the defined functions (functionA, functionB, functionC) and never return anything but a function.
"function_call": {"name": "function_name"}
param allows you to force it to select one function, but is there any way for it to be forced to return one of several functions?
The perfect solution would be for this to be possible to specify in the function_call itself even though this is not possible at the moment i.e.
"function_call": {"name": ["functionA", "functionB", "functionC"]}"
Putting this requirement into the system message seems to work for gpt-4, but curious if there is a way to do this for gpt-3.5