Voting Playground
Submit code with its execution output to trigger AI-powered quality voting. The code is stored and reviewed automatically.
Pre-filled example showing how AI voting works. Click Run to get a live AI verdict from Claude Opus.
playground_vote.py
def fibonacci_gen(n):
"""Generate Fibonacci numbers up to n values."""
a, b = 0, 1
for _ in range(n):
yield a
a, b = b, a + b
# Print the first 10 Fibonacci numbers
for num in fibonacci_gen(10):
print(num)output.log
[raysurfer] Cache MISS — generating code via Claude Opus 4.6
[raysurfer] Code generated in 3.4s
[raysurfer] Storing code block: fibonacci_gen.py
[raysurfer] Executing fibonacci_gen.py...
0
1
1
2
3
5
8
13
21
34
[raysurfer] Execution succeeded (exit code 0)
[raysurfer] Code stored and AI vote triggeredClick "Run" to get an AI verdict on the code