I have a set metadata being generated from a user's account to be called and update the thread whenever my assistant
run = openai_client.beta.threads.create_and_run(
assistant_id=assistantID,
instructions=f"...some instructions",
thread={
"messages": [
{"role": "user", "content": msg_content}
]
},
metadata=metadata
)
runID = run.id```
Do i need to set the metadata on the thread ? I had it working before.