# Create an assitantassistant=client.beta.assistants.create(
name="Math Tutor",
instructions="You are a personal math tutor. Write and run code to answer math questions.",
tools=[{"type": "code_interpreter"}],
model="gpt-4-1106-preview",
)
# Create a threadthread=client.beta.threads.create()
# Create a messagemessage=client.beta.threads.messages.create(
thread_id=thread.id,
role="user",
content="I need to solve the equation `3x + 11 = 14`. Can you help me?",
)
...
# Finally runrun=client.beta.threads.runs.retrieve(thread_id=thread.id, run_id=run.id)