We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
assistant_id
run_assistant
The code in assistants_quickstart.py will fail to run unless you programmatically define the assistant_id.
i.e. line 94 goes from this: assistant = client.beta.assistants.retrieve("asst_7Wx2nQwoPWSf710jrdWTDlfE")
assistant = client.beta.assistants.retrieve("asst_7Wx2nQwoPWSf710jrdWTDlfE")
to this: assistant = client.beta.assistants.retrieve(assistant.id)
assistant = client.beta.assistants.retrieve(assistant.id)
The text was updated successfully, but these errors were encountered:
Cool
Sorry, something went wrong.
No branches or pull requests
The code in assistants_quickstart.py will fail to run unless you programmatically define the
assistant_id
.i.e. line 94 goes from this:
assistant = client.beta.assistants.retrieve("asst_7Wx2nQwoPWSf710jrdWTDlfE")
to this:
assistant = client.beta.assistants.retrieve(assistant.id)
The text was updated successfully, but these errors were encountered: