Returns immediately with a run object in status ‘queued’.
Beta features can be enabled by setting the ‘parallel-beta’ header.
POST
/
v1
/
tasks
/
runs
Python
Copy
from parallel import Parallelclient = Parallel( api_key="My API Key",)task_run = client.task_run.create( input="What was the GDP of France in 2023?", processor="base",)print(task_run.run_id)
from parallel import Parallelclient = Parallel( api_key="My API Key",)task_run = client.task_run.create( input="What was the GDP of France in 2023?", processor="base",)print(task_run.run_id)