UBIK Agent will launch soon, join the waitlist to get access!
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.
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>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.ubik-agent.com/llms.txt
Use this file to discover all available pages before exploring further.
The unique identifier of the tool execution that is waiting for input.
Successful Response
Was this page helpful?