run_file
Run one explicitly named model file in sync or async mode. Advanced path; use run_model for normal whole-model execution.
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
mode | Annotated[Literal['sync', 'async'], Field(description='Run synchronously or queue asynchronously.')] | Yes | — | |
model_name | Annotated[str, Field(description='Name of the Bridge Town model to execute.')] | Yes | — | |
path | Annotated[str, Field(description='Model-relative Python file or script name to execute.')] | Yes | — | |
branch | `Annotated[str | None, Field(description=‘Branch to execute; defaults to the model default.’)]` | No | None |
commit_sha | `Annotated[str | None, Field(description=‘Exact commit SHA for async runs; omit to use the branch tip.’)]` | No | None |
parameters | `Annotated[dict[str, Any] | None, Field(description=‘Optional JSON object written to /inputs/parameters.json.’)]` | No | None |
outputs_preview | Annotated[bool, Field(description='Include bounded output previews for sync runs.')] | No | True | |
ctx | `Context | None` | No | None |
workspace_id | `Annotated[str | None, Field(description=WORKSPACE_ID_FIELD_DESCRIPTION)]` | No | None |
Returns
Section titled “Returns”Returns a structured object. Top-level fields:
run_id(string)model_name(string)status(string)commit_sha(string)exit_code(integer)
See the response example below for the full payload shape.
Example
Section titled “Example”Tool Call
Section titled “Tool Call”{ "name": "run_file", "arguments": { "mode": "sync", "model_name": "forecasts", "path": "model/revenue.py", "branch": "scenario/aggressive-growth" }}Response
Section titled “Response”{ "run_id": "66666666-6666-6666-6666-666666666666", "model_name": "forecasts", "status": "success", "commit_sha": "abc1234def5678901234567890abcdef12345678", "exit_code": 0}- Module:
Execution - Requires authentication via API token or Auth0 JWT.