get_job_output_data
Retrieve file paths of output data generated by a job, stored in the server's temp directory. Specify the job ID to access results directly.
Instructions
Get the output data generated by a job. This will return a list of file paths to the output data. The output data is stored in the temp directory of the server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
job_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"job_id": {
"title": "Job Id",
"type": "string"
}
},
"required": [
"job_id"
],
"title": "get_job_output_dataArguments",
"type": "object"
}