Anyone else having issues when creating threads with attached vector stores? This started happening a couple of days ago and I’ve not had much success since.
Feeding in vector store IDs when creating threads should attach the vector store allowing the assistant to search.
For reference the request body:
{
"assistant_id":"asst_xxx",
"max_completion_tokens":4096,
"thread":{
"messages":[
{
"role":"user",
"content":"Identify which file is most likely to be a quote and then extract quote information. Use the following files: file-xxx"
}
]
},
"tool_choice":{
"type":"file_search"
},
"tool_resources":{
"file_search":{
"vector_store_ids":[
"vs_xxxx"
]
}
},
"response_format":{
"type":"json_object"
}
}
as I say this used to work we’ve not changed anything our end. I can see the vector store with a single file in but it ends up not being attached in the UI:
I can see in the thread run it says it has the tool resource available but it seems unable to search it:
"tool_resources": {
"file_search": {
"vector_store_ids": [
"vs_690b229286cc8191867f82c826ebb3f9"
]
}
},
