(vectorStoreId, batchId, query = {}, options)
| 83965 | } |
| 83966 | /** |
| 83967 | * Create a vector store batch and poll until all files have been processed. |
| 83968 | */ |
| 83969 | async createAndPoll(vectorStoreId, body, options) { |
| 83970 | const batch = await this.create(vectorStoreId, body); |
| 83971 | return await this.poll(vectorStoreId, batch.id, options); |
| 83972 | } |
| 83973 | listFiles(vectorStoreId, batchId, query = {}, options) { |
| 83974 | if (isRequestOptions(query)) { |
| 83975 | return this.listFiles(vectorStoreId, batchId, {}, query); |
nothing calls this directly
no test coverage detected