Experimental run record

Run be0d3ee0

An inspectable execution record: configuration, deterministic outcomes, attempts, artifacts, and failure traces. This record is not a comparison.

· pack geoworkbench-0.1 · cancelled

Trials
2
Accepted
2
Configurations
32
Tasks
1
Cost USD
0.00216

Trials

attempt traces appear beneath each trial
Trial outcomes are deterministic verifier results, not model-judge opinions.
TaskConfigurationRetryResultAttemptsCostLatency
simple-buffer-v6Kimi K2.6 (Workers AI)single-shotaccepted10.0010020560
# attempt undefined — model: @cf/moonshotai/kimi-k2.6 — exit 0 — accepted — cost 0.00100 — 20560ms
# verifier: PASS — simple buffer geometry verified
# artifact: download (6171 bytes)
import geopandas as gpd

gdf = gpd.read_file("parcels.geojson")
if gdf.crs is None:
    gdf.set_crs(epsg=3857, inplace=True)
gdf["geometry"] = gdf.geometry.buffer(25)
gdf.to_file("simple_buffers.geojson", driver="GeoJSON")
architecture=single-shot
stage=single-code-generation
--- execution stdout ---
simple-buffer-v6Kimi K2.6 (Workers AI)single-retryaccepted10.0011623778
# attempt undefined — model: @cf/moonshotai/kimi-k2.6 — exit 0 — accepted — cost 0.00116 — 23778ms
# verifier: PASS — simple buffer geometry verified
# artifact: download (6171 bytes)
import geopandas as gpd
import shapely

gdf = gpd.read_file("parcels.geojson")
buffered = gdf.copy()
buffered.geometry = gdf.geometry.buffer(25)
buffered.to_file("simple_buffers.geojson", driver="GeoJSON")
architecture=single-retry
stage=single-code-generation
--- execution stdout ---