Choose what trains
Select trajectories and define which data is permitted to influence a model update.
Inference for agent systems
Start with Qwen 3.8 27B. Connect your agent once, capture real trajectories and reward signals, then evaluate, reinforce, and promote better checkpoints.
Inference is not a side feature. It is the beginning of the data loop. Every request establishes the context needed to understand how an agent behaves in production.
Built for agent inference and exposed through a familiar client interface. Change the endpoint, keep the agent, and start building a history of the work it actually performs.
The first API surface follows familiar OpenAI client semantics. Endpoint details and the public model slug will be finalized with the inference release.
Open the quickstartfrom openai import OpenAI
client = OpenAI(
base_url="https://api.autograd.run/v1",
api_key="AUTOGRAD_API_KEY",
)
response = client.chat.completions.create(
model="qwen-3.8-27b",
messages=[{
"role": "user",
"content": "Plan the task."
}],
)
Autograd joins inference with the outcomes that happen after inference. The result is a controlled path from production behavior to reinforcement learning.
Serve the agent through Autograd inference. Capture model steps, tools, latency, usage, and model version.
Attach product outcomes, user corrections, graders, or explicit scores through the SDK.
Evaluate and train against the work your agent actually performs—not a generic benchmark alone.
Compare the candidate with the baseline and deliberately promote a better checkpoint.
The Autograd SDK
A response cannot tell us whether the user accepted it, whether the tool succeeded, or whether the task was completed. The SDK closes that gap.
with autograd.trace() as run:
result = agent.invoke(task)
run.reward(
"task_success",
1.0,
)
run.event(
"user.accepted",
{"surface": "copilot"},
)
Proposed SDK surface. Names may change before release.
Select trajectories and define which data is permitted to influence a model update.
Compare every candidate against a baseline and a held-out evaluation set.
Keep checkpoint history visible and require an explicit decision before production traffic moves.
Private preview
Qwen 3.8 27B inference, OpenAI-compatible client surface, structured run capture.
SDK reward events, trajectory browser, dataset selection, baseline evaluations.
Automated RL runs, candidate evaluation, checkpoint comparison, promotion and rollback.
One endpoint. A compounding system.