Hello all! I am wondering how to go about adding a newly uploaded file to an already created assistant via the python api. Here is what I have:
client.beta.assistants.update(
assistant_id=assistant_id,
file_ids=response
)
in this instance, the user has input which assistant id they would like to add this new file to and has also specified the file id they would like to add. The assistant was already created with files that will be staying associated with this assistant as well. The idea is to update these files weekly such that outdated files will be removed and newer updated files will be replacing them. If any of this is too confusing or you need more elaboration let me know.