Hi all,
I’m testing out the file-search tool for the assistants API. I’ve followed the docs, i.e. pretty much step 4 of this:
https://platform.openai.com/docs/assistants/tools/file-search/quickstart?context=without-streaming
Before running the thread and pointing to a specific assistant.
The response I keep getting is “It appears that no PDF file has been uploaded. Please upload the document you are referring to”. I can see the document in the ‘Storage’ pane, under files. But not under any vector store.
My understanding was, that by passing:
messages=[
{
"role": "user",
"content": f"{prompt}",
"attachments": [
{ "file_id": message_file.id, "tools": [{"type": "file_search"}] }
],
}
I would be utilising a helper that will create a vector store automatically from my file.
Is anyone else seeing this issue? Or knows of a fix?