Your coding agent is quoting exchange rates from its training data
This story is from 2026-09-14. It is preserved in the archive; the latest stories are on the live feed.
Try this in any AI coding tool: Write a function that converts USD to EUR. There is a good chance you get something like this back: const USD_TO_EUR = 0.92 ; export function usdToEur ( amount : number ) { return amount * USD_TO_EUR ; } It compiles. It passes review. It is wrong, and it will stay wr…
Read the full story at DEV Community — AI ↗
Timeline · 1 report
- 2026-09-14 11:12 · DEV Community — AI
Your coding agent is quoting exchange rates from its training data