What's the usage for "metadata" field in client.beta.threads.runs.update function?

For this function:

run = await client.beta.threads.runs.update(
    thread_id=thread.id,
    run_id=run.id,
    metadata={},
    timeout=1
)

What’s the usages for metadata field? What fields can I update using this function, anyone knows the related official document?

Thanks!

All right I found it here:
https://platform.openai.com/docs/api-reference/runs/modifyRun

It does nothing but store some specific parameters, may useful to track something interested.

1 Like