A unique identifier for the run, mandatory when loaded from DB.
Inputs that were used to initiate the run.
A human-readable name for the run.
Specifies the type of run (tool, chain, llm, etc.).
Optional
app_The URL path where this run is accessible within the app.
Optional
attachmentsAttachments associated with the run. Each entry is a tuple of [mime_type, bytes]
Optional
child_IDs of any child runs spawned by this run.
Optional
child_Child runs, loaded explicitly via a heavier query.
Optional
completion_Number of tokens generated in the completion.
Optional
dotted_The dotted order for the run.
This is a string composed of {time}{run-uuid}.* so that a trace can be sorted in the order it was executed.
Example:
Optional
end_The epoch time at which the run ended, if applicable.
Optional
errorError message, captured if the run faces any issues.
Optional
eventsEvents like 'start', 'end' linked to the run.
Optional
extraAny additional metadata or settings for the run.
Optional
feedback_Stats capturing feedback for this run.
Optional
first_Time when the first token was processed.
Optional
in_Whether the run is included in a dataset.
Optional
inputs_The input S3 URLs
Optional
manifest_The manifest ID that correlates with this run.
Optional
outputsOutputs produced by the run, if any.
Optional
outputs_The output S3 URLs
Optional
parent_ID of a parent run, if this run is part of a larger operation.
Optional
parent_IDs of parent runs, if multiple exist.
Optional
prompt_Number of tokens used in the prompt.
Optional
reference_ID of an example that might be related to this run.
Optional
serializedSerialized state of the run for potential future use.
Optional
session_The ID of the project that owns this run.
Optional
start_The epoch time at which the run started, if available.
Optional
statusThe current status of the run, such as 'success'.
Optional
tagsTags for further categorizing or annotating the run.
Optional
total_Total token count, combining prompt and completion.
Optional
trace_Unique ID assigned to every run within this nested trace. *
Describes properties of a run when loaded from the database. Extends the BaseRun interface.