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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need a solution to support file search when using the new response api with the AI SDK.
const productDocs = await openai.vectorStores.create({ name: "Product Documentation", file_ids: [file1.id, file2.id, file3.id], }); const response = await openai.responses.create({ model: "gpt-4o-mini", tools: [{ type: "file_search", vector_store_ids: [productDocs.id], }], input: "What is deep research by OpenAI?", }); console.log(response.output_text);
News link: https://openai.com/index/new-tools-for-building-agents/
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature Description
We need a solution to support file search when using the new response api with the AI SDK.
News link: https://openai.com/index/new-tools-for-building-agents/
Use Cases
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: