Showroom
Codeqwen2.5-coder-7bLive

Code completion

Qwen2.5-Coder is tuned for code — completion, refactors, and explanations across languages, running on a sovereign endpoint.

Prompt

Write a Python function that returns the nth Fibonacci number iteratively.

qwen2.5-coder-7b · sample response

def fib(n):
    a, b = 0, 1
    for _ in range(n):
        a, b = b, a + b
    return a

Run it yourself

Sign up free, deploy this model, and make a real call in minutes — all in eu-north-1.

Get started free