WaveCut's picture
Add files using upload-large-folder tool
106570a verified
Raw
History Blame Contribute Delete
300 Bytes
{
"returncode": 0,
"wall_seconds": 7.366,
"generation_tokens_per_second": 97.959,
"peak_memory_gb": 2.709,
"output": "```python\ndef clamp(value, low, high):\n \"\"\"Clamp a value to the inclusive range [low, high].\"\"\"\n return max(low, min(value, high))\n```",
"passed": true
}