Hello! Are Predicted Outputs available for the asynchronous client in the Python API? Looks like v1.54.1 should’ve added its support, but my code triggers a warning:
WARNING:__main__:An unexpected error occurred: AsyncCompletions.create() got an unexpected keyword argument 'prediction'.
The code:
import openai
...
async_client = openai.AsyncOpenAI(api_key=api_key)
response = await async_client.chat.completions.create(
messages=messages,
prediction=prediction,
model=model
)