(model, prefix, num)
| 1100 | |
| 1101 | |
| 1102 | def upload_file(model, prefix, num): |
| 1103 | model = RemoteModel(model) |
| 1104 | ids = [] |
| 1105 | for i in range(0, num): |
| 1106 | response = model.upload_file(f"{prefix}{i}.jsonl") |
| 1107 | ids.append(response.id) |
| 1108 | print(ids) |
| 1109 | |
| 1110 | def delete_file(model, ids): |
| 1111 | model = RemoteModel(model) |
nothing calls this directly
no test coverage detected