curl https://api.runcrate.ai/v1/chat/completions \
-H "Authorization: Bearer rc_live_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo",
"messages": [
{"role": "system", "content": "You are a senior software engineer. Write clean, production-ready code with error handling. Return only the code, no explanation."},
{"role": "user", "content": "Write a Python function that retries an HTTP request with exponential backoff. Accept a URL, max retries (default 3), and base delay (default 1.0)."}
],
"max_tokens": 1024
}'