UBIK Agent will launch soon, join the waitlist to get access!
English
Python
import requests url = "https://app.ubik-agent.com/api/v1/tool-executions/{execution_id}/provide-input" files = { "file.0": ("example-file", open("example-file", "rb")) } payload = { "file": "<string>", "input_data_json": "<string>" } headers = {"X-API-KEY": "<api-key>"} response = requests.post(url, data=payload, files=files, headers=headers) print(response.text)
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>" } ] }
Provides the required input to a tool execution that is in the ‘waiting_for_input’ state.
The unique identifier of the tool execution that is waiting for input.
An optional file to upload as input.
Optional JSON data to provide as input.
Successful Response
Was this page helpful?