import os
import requests
payload = {
"documents": [
"https://docs.google.com/spreadsheets/d/1I91pSw7TdhsBrAa7GOFKYChcS1-2JtW-ftVGSLBW7_8/edit?usp=sharing"
],
"run_urls": [
"https://gooey.ai/copilot/0-gpt55-fulfulde-j21nzkr5xkyc/",
"https://gooey.ai/copilot/1-gem31pro-fulfulde-9lwf1lqmoetf/",
"https://gooey.ai/copilot/2-gem31flashlite-fulfulde-wlhmyy1x3bj7/",
"https://gooey.ai/copilot/3-gpt-realtime-15-fulfulde-2t1ua8c48sex/",
"https://gooey.ai/copilot/4-gpt55-omni-fulfulde-hi1fb45b3j3a/",
"https://gooey.ai/copilot/5-gpt55-intron-fulfulde-az638ki8zc0r/",
"https://gooey.ai/copilot/6-gem31pro-omni-fulfulde-65q5iqfczi8b/",
"https://gooey.ai/copilot/7-gem31pro-intron-fulfulde-18vu6kbjzbz4/",
"https://gooey.ai/copilot/8-gem31flashlite-omni-fulfulde-6d19p7s69qv2/",
"https://gooey.ai/copilot/9-gem31flashlite-intron-fulfulde-cgb8frxjvznw/",
"https://gooey.ai/copilot/10-gpt-realtime-15-omni-fulfulde-0nedbngz9st1/",
"https://gooey.ai/copilot/11-gpt-realtime-15-intron-fulfulde-weinznta75fc/",
"https://gooey.ai/copilot/12-kimi-k26-omni-fulfulde-oxx8z01qs14l/",
"https://gooey.ai/copilot/13-kimi-k26-intron-fulfulde-cj98t12t41dc/",
"https://gooey.ai/copilot/14-gpt-oss-120b-omni-fulfulde-21tkrwnzxzud/",
"https://gooey.ai/copilot/15-gpt-oss-120b-intron-fulfulde-jpcdjaaogl44/",
"https://gooey.ai/copilot/16-gemma4-26b-omni-fulfulde-ynkusptgig6w/",
"https://gooey.ai/copilot/17-gemma4-26b-intron-fulfulde-qtcqxf1s368g/",
],
"input_columns": {"input_audio": "input_audio"},
"output_columns": {
"run_url": "Run URL",
"run_time": "Run Time",
"output_text": "Output Text",
},
}
response = requests.post(
"https://test.api.gooey.ai/v2/bulk?example_id=0roaemlvm9np",
headers={
"Authorization": "bearer " + os.environ["GOOEY_API_KEY"],
},
json=payload,
)
assert response.ok, response.content
result = response.json()
print(response.status_code, result)