Fetch a user submitted file (image or audio) for a given Task Run

Fetch an individual Task Run file. This can be either an image or audio file generated by the task.

Authentication

AuthorizationBearer

Bearer token authentication using JWT tokens from Ory Kratos/Hydra

Path Parameters

org_idstringRequiredformat: "uuid"
The unique identifier of the organization.
project_idstringRequiredformat: "uuid"
The unique identifier of the project.
task_idstringRequiredformat: "uuid"
The specific Task to reference.
task_run_idstringRequiredformat: "uuid"
The specific Task Run to reference.
file_namestringRequired

The file name to fetch (image or audio).

Response

Successful Response
task_idstringformat: "uuid"
The unique identifier of the Task associated with this run.
task_revision_idstringformat: "uuid"
The unique identifier of the Task Revision associated with this run.
responsemap from strings to any
The structured response from the Task execution.
run_dataobject
Additional data about the Task execution, including submitted inputs and processed files.
idstringformat: "uuid"
The unique identifier of the Task Run.
createdstring
The timestamp when the Task Run was created.
input_tokensinteger
The number of tokens submit as input to the model.
output_tokensinteger
The number of tokens generated and output by the model.
total_tokensinteger
The total token usage for the TaskRun.
input_processor_timingdouble or null
The execution time for the TaskRun in seconds.
llm_call_timingdouble or null
The execution time for the TaskRun in seconds.
charged_creditsstring or nullformat: "^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$"
The total credits charged for the TaskRun.
is_errorboolean or nullDefaults to false
llm_retriesinteger or nullDefaults to 0
Number of retry attempts made during LLM execution.
used_fallback_modelboolean or nullDefaults to false
Whether the fallback model was used
primary_failure_reasonstring or null
Reason the primary model failed
fallback_llm_model_idstring or nullformat: "uuid"
Fallback model that was used
user_idstring or nullformat: "uuid"
The unique identifier of the User who executed the task.
reporting_group_idstring or nullformat: "uuid"
The ID of the reporting group to associate with this task run
reporting_groupobject or null
The reporting group associated with this task run

Errors