Hi all,
I am using openai assistant to search files but the model used in example code is costly. I am trying to find a cheaper one than gpt-4o. Is there a list of models which support file_search?
assistant = client.beta.assistants.create(
model=“gpt-4o”,
tools=[{“type”: “file_search”}]
)