Inkling
1 program
Added 2026-02-10T18:30:00Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 78615a0907 · authored 2026-02-11T13:26:20+01:00 · agent claude-code-recovery · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Cartpole Balance
Provenance: commit 78615a0907 · authored 2026-02-11T13:26:20+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
inkling "2.0"
type SimState {
cart_position: number,
cart_velocity: number,
pole_angle: number,
pole_velocity: number
}
type SimAction {
command: number<Left = -1, Right = 1>
}
type SimConfig {
episode_length: number
}
graph (input: SimState): SimAction {
concept balance(input): SimAction {
curriculum {
source simulator (action: SimAction, config: SimConfig): SimState {
}
}
}
output balance
}