# Upload data for batch processingwithopen('data/batch_input.csv','rb')asf:response=requests.post('https://model-api.credplatform.com/batch',headers=headers,files={'file':f},data={'model_id':'predictive_analytics_v1'})job_id=response.json()['job_id']# Check job statusstatus_response=requests.get(f'https://model-api.credplatform.com/jobs/{job_id}',headers=headers)