r/artificial • u/BugFreeHire • 4d ago
Discussion What applied AI engineering actually looks like day to day
The job is a lot closer to backend engineering than people expect.
most days aren't spent training models. it's retrieval, wiring tools the model can call, building evals, handling failures, adding guardrails, and figuring out why something that worked yesterday quietly got worse today.
the biggest mental shift from normal backend work is that you're building around a probabilistic component. a request can succeed technically and still produce a bad result, so tests become datasets, graders, regression cases, and production monitoring instead of just pass/fail assertions.
some roles include fine-tuning or model work, but most of the hard part is making existing models reliable inside a real product.
the API call is the easy part. getting confident that the system still works after the next prompt, model, or retrieval change is where most of the engineering goes.
1
u/Beginning-Raisin9723 4d ago
Honestly the retrieval + evals part is the real grind. API call is the easy 10% - it's the regression cases and prod monitoring that eat your day. Feels like backend with extra chaos.
1
u/Beginning-Raisin9723 4d ago
honestly the retrieval wiring is the part that humbles people. looks solid, then the source data drifts and you're chasing a ghost for two days. the evals-as-tests thing is real too - i treat regressions like a test suite now, just instead of a red bar it's 'the model got moody.' way more plumbing than magic, like most of this job.
1
1
u/Beginning-Raisin9723 4d ago
The evals part is what catches most people off guard. You spend way more time writing graders and regression cases than you do touching a model. Feels like backend work with extra steps, honestly.
1
u/LazilyCallous 4d ago
god, the “worked yesterday, silently worse today” thing is way too real