Base bandwidth mbps
base_bandwidth_mbps
Device bandwidth before allowances
Scores if within ±3% of the reference value.
Calculates network bandwidth demand for an ITS device inventory by summing camera, controller, and sensor data rates. The reduced method applies a network overhead allowance and future capacity buffer to produce base, peak, and required bandwidth values.
with-tool: The model is given an executable Python calculator script.
Standards
One template produces many comparable benchmark tasks while keeping the scoring contract fixed.
01
The reusable contract shown on this page.
02
An archetype and site context are sampled.
03
Inputs may be hidden at harder tiers.
04
The model responds with the declared outputs.
Inputs the model receives, and the outputs it is scored on.
8 inputs
Included directly in every task prompt.
Camera count
camera_count
Number of cameras
Camera data rate
camera_data_rate_mbps
Data rate per camera
Controller count
controller_count
Number of controllers
Controller data rate
controller_data_rate_mbps
Data rate per controller
Sensor count
sensor_count
Number of sensors
Sensor data rate
sensor_data_rate_mbps
Data rate per sensor
Network overhead pct
network_overhead_pct
Network protocol and peak overhead allowance
Visible in easier tasks and withheld in one or more harder tiers.
Future capacity buffer pct
future_capacity_buffer_pct
Future capacity buffer
Hidden at hard difficulty.
3 outputs
base_bandwidth_mbps
Device bandwidth before allowances
Scores if within ±3% of the reference value.
peak_demand_mbps
Bandwidth after network overhead
Scores if within ±3% of the reference value.
required_bandwidth_mbps
Bandwidth after overhead and future buffer
Scores if within ±3% of the reference value.
Each template is sampled at three tiers. Harder tiers may hide inputs, forcing the model to infer them from the scenario description.
All inputs given
Small node with all rates given
Network overhead pct restricted to: 15
Future capacity buffer pct restricted to: 25
All inputs given
Mixed ITS device inventory
Some inputs hidden
Future buffer hidden in corridor planning context
Hidden inputs
Prompt replacement text
Use the future capacity buffer implied by {{ archetype.description }}.
Future capacity buffer pct restricted to: 25
The exact instruction and parameter contract used to generate this task, pinned to the published library source.
/workspace
Teal lines show Jinja input conditions, not task visibility policy. A line renders only when that input or tool is visible.
1You are a senior ITS communications engineer sizing network bandwidth.2 3## Given4 5| Parameter | Value | Unit |6|-----------|-------|------|7| Cameras | {{ camera_count }} | count |8| Camera data rate | {{ camera_data_rate_mbps }} | Mbps each |9| Controllers | {{ controller_count }} | count |10| Controller data rate | {{ controller_data_rate_mbps }} | Mbps each |11| Sensors | {{ sensor_count }} | count |12| Sensor data rate | {{ sensor_data_rate_mbps }} | Mbps each |13| Network overhead | {{ network_overhead_pct }} | % |14{% if future_capacity_buffer_pct is defined %}15| Future capacity buffer | {{ future_capacity_buffer_pct }} | % |16{% endif %}17 18## Constraints19 20- Sum device count times data rate for base bandwidth.21- Apply network overhead to get peak demand.22- Apply future capacity buffer to peak demand.23 24## Output Format25 26Include a JSON block with exactly these keys:27 28```json29{30 "base_bandwidth_mbps": <numeric_value>,31 "peak_demand_mbps": <numeric_value>,32 "required_bandwidth_mbps": <numeric_value>33}34```35 36Write your complete solution to `/workspace/output.md`.37 Each generated task is drawn from one of these realistic scenario bands.
Site contexts ground each scenario in a real locale the model can use to infer hidden values.
small_intersection
Small signalised intersection communications node
corridor_network
Road corridor ITS aggregation network
motorway-corridor-corridor-network-preview — hard difficulty, some inputs hidden.
Road corridor ITS aggregation network. motorway-corridor. Required outputs: base_bandwidth_mbps, peak_demand_mbps, required_bandwidth_mbps
Scenario context and visible inputs.
Executable tool: bandwidth-calculation_calc.py
Inputs withheld at this difficulty.
Future capacity buffer pct
future_capacity_buffer_pct
Stand-in text in the prompt
Use the future capacity buffer implied by {{ archetype.description }}.
The scored JSON answer schema.
{
"base_bandwidth_mbps": <number>,
"peak_demand_mbps": <number>,
"required_bandwidth_mbps": <number>
}