01 // Quickstart
Installation & Handshake
The Argus SDK is a zero-block async client designed to wrap your training loop with zero latency overhead.
from argussdk import Argus
# Initialize the Protocol Gate
argus = Argus(
api_key="PA-XXXX-XXXX",
run_id="model-70b-helltest",
mode="AUTO" # Automated fail-safe interventions
)
# Active Monitoring Loop
for step, (x, y) in enumerate(dataloader):
loss = model(x, y)
# Report telemetry with zero-latency prefetch
argus.step(
loss=loss.item(),
grad_norm=compute_grad_norm(model),
epoch=current_epoch
)