Create an account and an API key
1
Sign up and verify your email
Create an account at platform.r3al.ai. Verify your email to activate the account.
2
Mint an API key
Open the SDK / API keys page and create a key. Live keys look like
r3l_live_.... The secret is shown once, so copy it immediately. If you lose it, revoke it and mint a new one.Connect the SDK
The SDK resolves your key from, in order: the argument you pass,platform.login(...), then the R3AL_API_KEY environment variable.
configure:
Monitor jobs
Everyquantize() or train_qat() call creates a job on the platform. The SDK prints live progress while it waits:
pending, running, completed, error), a progress bar, and a history of every run you have submitted. From the SDK you can inspect a job directly:
Your plan and the free-run limit
The free plan includes 3 runs. Eachquantize or QAT job consumes one run; local benchmark(), load(), and export do not. Check what you have left from the SDK or the platform’s usage/plan page:
PlanLimitError (HTTP 402):
Download results
quantize() and train_qat() download the deliverable automatically into output_dir, and result.path points at it. If you submit a job with the lower-level PlatformClient and want to download later, use the Job handle:
r3alai_manifest.json, so local load() and benchmark() work on it directly.
Errors
All platform errors subclassR3ALPlatformError:
Next steps
End-to-end workflow
Export, quantize, monitor, download, validate.
Python SDK
The Quantizer facade, PlatformClient, and Job.

