Updates to Python SDK for Assistants? (temperature/response_format)

When is the python sdk being updated to these new fields?

Really need to test and use some of these for the service we are building

1 Like

openai version 1.17.1 working for me:

run = client.beta.threads.runs.create(
    thread_id=thread.id,
    assistant_id=assistant.id,
    temperature=0.0,
)

is accepted and executed.