(self, batch_id)
| 97 | return response |
| 98 | |
| 99 | def cancel_batch(self, batch_id): |
| 100 | response = self.client.batches.cancel(batch_id) |
| 101 | print(response) |
| 102 | return response |
| 103 | |
| 104 | def delete_batch(self, batch_id): |
| 105 | response = self.client.batches.retrieve(batch_id) |