A shopper-facing chat agent on Claude and MCP — catalogue search, cart building and order status, in Ukrainian and Russian.
Informatica
- Model
- Claude Haiku 4.5
Two different things get called "AI experience". One is using it to work faster. The other is shipping features that customers depend on. They need different evidence, so they're separated here.
I use AI daily, mostly for the parts of the job that are typing rather than thinking: scaffolding a Function and its tests, drafting a migration script, writing the first pass of a schema, reviewing a diff for the thing I've stopped noticing after four hours.
What I don't delegate is architecture, security decisions, or the question of whether the output is actually correct. On an integration that touches money — bank reconciliation, fiscal receipts — that's the whole job. A model that writes a plausible-looking sync is a liability unless someone read it, and that someone is me.
The practical effect is that I take on integrations and migrations I'd have been slower to attempt before, because the tedious half is now genuinely faster. The careful half takes exactly as long as it did.
This is the same pattern as a store's pre-sales assistant, pointed at my own case studies instead of a catalogue. It retrieves from the site's content, cites the section it used, and refuses when the answer isn't there. Everything it says is checkable by following the link.
The assistant needs JavaScript. Everything it can tell you is inthe case studies,the CV andservices.
A demo that works once is not evidence. These are the constraints it runs under, which is the part a client should actually care about.
Content is chunked by heading at author time and embedded with text-embedding-3-small at 512 dimensions — a third of the default. The reduction is deliberate: it keeps the whole index inside one Worker with no vector database to depend on, and it cost nothing measurable in retrieval quality here while clearly helping latency. At query time it's one embedding call, a dot product over the site's normalised vectors, then one capped completion. Answers are returned whole rather than streamed, so citations can be resolved to real links before anything reaches the page.
Measured against the site content as of 2026-08-30.
The eval set scores retrieval, not phrasing: for each question it checks whether the passage that actually contains the answer came back in the top three. Out-of-scope questions are in the set too, and they are expected to be stopped by the similarity floor — a leak there fails the run. It's deterministic and costs one embedding per question, so it runs on every content change rather than once at launch.
Client work where AI is the substance rather than the tooling.
A shopper-facing chat agent on Claude and MCP — catalogue search, cart building and order status, in Ukrainian and Russian.
Informatica