Skip to main content
POST
/
rheed
/
stream
/
warmup
import requests

response = requests.post(
    "https://api.atomscale.ai/rheed/stream/warmup",
    headers={"X-API-KEY": "YOUR_API_KEY"}
)
ready = response.json()
true
Checks whether a RHEED processing worker is ready. Returns true if a worker is ready, or false otherwise (in which case a warm-up is triggered). Call this before starting a stream to reduce cold-start latency.

Response

Returns a boolean: true if a processing worker is ready, false otherwise.
import requests

response = requests.post(
    "https://api.atomscale.ai/rheed/stream/warmup",
    headers={"X-API-KEY": "YOUR_API_KEY"}
)
ready = response.json()
true