import os
import requests
payload = {
"documents": [
"https://docs.google.com/spreadsheets/d/1mfMLRKgpNoAJdjpOt9lDwVM72zKbTXkfUXdaCzPn5m4/edit?gid=1027514040#gid=1027514040"
],
"run_urls": [
"https://gooey.ai/speech/swahili-asr-m4tgoogle-translate-1o24bup07uy3/",
"https://gooey.ai/speech/swahili-asr-mmsgoogle-translate-vh8o3fkluwqu/",
"https://gooey.ai/speech/swahili-asr-m4t-m4t-translate-ckwshme9arp0/",
"https://gooey.ai/speech/swahili-asr-whisper-v3-whisper-translate-h5pfigkt1i22/",
"https://gooey.ai/speech/swahili-asr-whisper-v3-google-translate-isxcq78q5je9/",
"https://gooey.ai/speech/swahili-asr-whisper-v2-whisper-translate-sc61r4vx5t1q/",
"https://gooey.ai/speech/swahili-asr-whisper-v2-google-translate-g6y9y5ota8rg/",
"https://gooey.ai/speech/swahili-asr-google-cloud-v1-google-translate-hkhpq9ak2gek/",
"https://gooey.ai/speech/swahili-asr-google-chirpusm-v2-google-translate-fsrcywvem8w4/",
"https://gooey.ai/speech/swahili-asr-azure-speech-google-translate-7cacoi2cy3z8/",
"https://gooey.ai/speech/sunbird-asr-google-translate-swahili-en-zgvp8byabt2m/",
"https://gooey.ai/speech/jacaranda-health-asr-google-translate-swahili-en-nj75qn3smx1q/",
"https://gooey.ai/speech/swahili-asr-gpt-4o-audio-google-translate-8msjownqbqcv/",
"https://gooey.ai/speech/mbaza-asr-google-translate-swahili-en-x06smbljck5e/",
],
"input_columns": {"documents": "File_path"},
"output_columns": {
"run_url": "Run URL",
"run_time": "Run Time",
"output_text": "Output Text",
"raw_output_text": "Raw Output Text",
},
}
response = requests.post(
"https://api.gooey.ai/v2/bulk-runner?example_id=9itqvzjjv4m4",
headers={
"Authorization": "bearer " + os.environ["GOOEY_API_KEY"],
},
json=payload,
)
assert response.ok, response.content
result = response.json()
print(response.status_code, result)