Agent runs represent execution traces of AI agents. See the Agent Run data model for the full schema.Documentation Index
Fetch the complete documentation index at: https://docs.transluce.org/llms.txt
Use this file to discover all available pages before exploring further.
Get a Single Agent Run
Parameters
ID of the collection containing the run.
ID of the agent run to retrieve.
Returns
The agent run object, or
None if not found. Returns a fully validated
AgentRun Pydantic model instance.List All Agent Run IDs
Parameters
ID of the collection.
Returns
List of all agent run IDs in the collection.
Select Agent Runs with DQL
Filter agent runs using DQL WHERE clauses.Parameters
ID of the collection to query.
DQL WHERE clause applied to the
agent_runs table. Omit to return all runs.Maximum number of run IDs to return. Must be a positive integer.
Returns
Agent run IDs matching the criteria.
If the query results are truncated (hit the server limit), a warning is logged.
Use the
limit parameter to control result size explicitly.Errors
ValueError—where_clauseis an empty string, orlimitis not positiveHTTPError— Invalid DQL syntax or collection not found

