Typed, replayable, budget-aware programming language for LLM agents.
275
Typed, replayable, budget-aware programming language for LLM agents.
Compiles to Python & TypeScript.
par map, par race, par all# Pull the image
docker pull nekomyadev/nudge:latest
# Run nudgec
docker run -it --rm nekomyadev/nudge nudgec --help
# Mount your project and run
docker run -it --rm -v $(pwd):/workspace nekomyadev/nudge nudgec check hello.ndg
# Build and run with fake provider (no API key needed)
docker run -it --rm -v $(pwd):/workspace -e NUDGE_PROVIDER=fake nekomyadev/nudge sh -c "nudgec build hello.ndg && python3 out/hello.py"
type Finding = { claim: string, source: Url, confidence: float @range(0, 1) }
fn analyze(q: string) -> [Finding] uses LLM {
llm"""Extract findings about {q}"""
with { schema: [Finding], model: "anthropic:sonnet-4.6", budget: 0.03 USD }
}
latest — Latest stable release1.2.0 — Version 1.2.0This image is regularly scanned for vulnerabilities. Current status:
Proprietary — see LICENSE
Content type
Image
Digest
sha256:ebf1cbe6b…
Size
96.1 MB
Last updated
29 days ago
docker pull nekomyadev/nudge