AxMeep_get_results
Retrieve results from a completed Meep job, including summarized arrays, inline PNG figures, and local file paths for loading with numpy. Check simulation status first to ensure completion.
Instructions
Fetch the exports of a completed Meep job. Check get_simulation_status first — calling this early reports that the job is still running, it does not wait. Each export is summarized (arrays as shape/dtype/min/max/mean, scalars exactly), PNG figures are returned inline as images, and every artifact is written to a local file whose path is returned so it can be loaded with numpy. Pickled objects are reported but never decoded.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | The task_id returned by execute_code. | |
| output_dir | No | Directory to write artifacts into; a per-task subdirectory is created inside it. Defaults to $AXIOMATIC_MEEP_OUTPUT_DIR if set, else the working directory. An absolute path is recommended. | |
| max_inline_images | No | How many PNG figures to return inline as images (the rest are written to disk and referenced by path). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| error | No | ||
| exports | No | Per export: kind, size_bytes, path and a one-line summary. Never the raw payload. | |
| success | No | ||
| task_id | No | ||
| error_type | No | ||
| output_dir | No | Directory the artifacts were written to. | |
| status_code | No | ||
| failed_objects | No | ||
| console_output_path | No | ||
| console_output_excerpt | No |