()
| 235 | // generateBatchFile(); |
| 236 | |
| 237 | const uploadBatchFile = async () => { |
| 238 | const file = await openai.files.create({ |
| 239 | file: fs.createReadStream("scripts/req.jsonl"), |
| 240 | purpose: "batch", |
| 241 | }); |
| 242 | |
| 243 | console.log(file); |
| 244 | }; |
| 245 | |
| 246 | // uploadBatchFile(); |
| 247 |
nothing calls this directly
no outgoing calls
no test coverage detected