Topic

AI-assisted development

Coding assistants speed up your team when tests and reviews set the frame.

AI coding assistance: fixing a bug

Simulation. A small pricing function rounds incorrectly — the suggestion and test run are simulated.

price_with_vat.py — buggy

def price_with_vat(net_cents: int, vat_rate: float) -> int:
    gross = net_cents * (1 + vat_rate)
    return int(gross)  # truncates instead of rounding

Failing tests

  • test_price_with_vat_19_percentfailing
  • test_price_with_vat_7_percentfailing
  • test_price_with_vat_rounds_half_upfailing

What you gain

  • Faster delivery without losing quality
  • Rules so suggestions fit your project
  • Training so everyone works with it safely
Next topicMachine learning

A personal conversation

What are you working on?

Tell us about your challenge. Together, we can work out whether and how we can help.

Get in touch