// AI AUTOMATION
What Is AI Automation?
Eight and a half percent of Bulgarian companies use AI at all. Here is what AI automation actually is, what it costs to build, and how to work out whether yours would pay for itself.

In 2025, 8.5% of Bulgarian companies with ten or more employees used AI for anything at all. Across the EU the figure was 20.0%, according to Eurostat. Four out of five Bulgarian businesses still push every judgement-based task through a person.
AI automation is what closes part of that gap, and it is narrower than the marketing around it suggests. It means handing one repetitive task to a model that can read, classify and write, then wiring the output back into software you already use. The unit of work is a task, not a transformation programme.
This post covers what the term means, how it differs from the automation already running inside your accounting software, what it costs in 2026, where it breaks, and how to tell whether a given task in your business is worth automating at all.
What AI automation actually is
Take any task where somebody reads something, works out what it means, then does something about it. A supplier invoice arrives. A person reads it, decides which cost centre it belongs to, and types four fields into the accounting system. AI automation replaces the reading and the deciding with a model call, and leaves the typing to an API.
The technical definition is duller: combining machine learning models, usually language models and sometimes vision models, with ordinary workflow tooling, so that steps requiring interpretation can run unattended. The model supplies judgement on messy input. The workflow layer supplies the plumbing, the retries and the audit trail.
What separates this from every earlier wave of automation is the input it will accept. Older automation needed structured data: a form field, a database row, a CSV column. AI automation takes a scanned PDF, a customer email written half in Bulgarian and half in English, a photograph of a delivery note with a coffee stain on it.
Most businesses already automate plenty. Scheduled reports, payment reminders, stock alerts, order confirmations. All automation, none of it AI. It works because the rules cover the ground: if the invoice is fourteen days overdue, send the reminder.
Rule-based automation stops the moment a case falls outside those rules. There is no branch for it, so the process waits for a person. How often that happens is the number that decides whether AI is worth paying for.
- Rule-based automation is deterministic and free at the margin. The same input gives the same output every time, and running it a million times costs nothing extra. Use it wherever the rules genuinely cover the cases.
- AI automation is probabilistic and costs a fraction of a cent per call. It handles input nobody anticipated, at an accuracy that depends almost entirely on how narrow you make the task. In our own projects, loose tasks sit in the eighties and tight ones in the low nineties. Use it where the tail of exceptions is eating real hours.
- Most systems that survive contact with production are both. The model interprets; the rules decide what happens next and when a human gets pulled in.
The four parts of any AI automation
Strip away the vendor language and these systems all have the same four components. Knowing them makes it much easier to tell a real proposal from a polished demo.
- A trigger. An email lands in a shared inbox, a file appears in a folder, a form is submitted, a nightly job fires. Something has to start the run, and it should almost never be a person clicking a button.
- Context retrieval. The model needs your data, not the internet's. For document work that means the file itself. For anything answering questions it means a search across your own content, which is the pattern behind RAG chatbots.
- The model call. A prompt, the retrieved context, and a required output shape, usually JSON, so the next step can act on the answer without a human reading it first.
- Write-back and fallback. The result goes into your CRM, ERP or helpdesk. Anything the model flagged as uncertain goes to a person instead, with its reasoning attached. Systems built without that fallback path are the ones people quietly stop trusting.
What it looks like inside a Bulgarian business
The tasks worth automating are usually unglamorous. Accounting firms in Sofia coding several hundred client invoices a month. Distributors matching incoming purchase orders against a catalogue where every customer uses their own product names. Online shops answering the same shipping question forty times a day in two languages.
We built Boro, a bilingual property assistant, for that third shape. Buyers describe what they want in ordinary language, the system turns that into listing criteria and answers the follow-up questions without a broker on the line. It switches between Bulgarian and English based on the visitor's first message, a requirement that used to make a project expensive and now costs a line of prompt.
Our longer catalogue of use cases goes deeper on document processing, lead qualification and reporting. The shape underneath all of them is the same: high volume and semi-structured input, with errors that get caught cheaply at review.
Worth noting: none of these started life as an AI project. They started as a complaint: somebody in the company said out loud that one specific job was eating a day a week. That is the right way round. Projects that begin with the technology tend to end in a tool nobody in operations asked for and nobody opens after the second month.
What AI automation is still bad at
Accuracy has a ceiling and it is not 100%. On a well-scoped extraction task, expect somewhere in the low nineties without heavy engineering. That is fine for invoice coding, where a wrong cost centre gets caught at review. It is dangerous anywhere a mistake is both expensive and invisible.
Low volume kills the economics whatever the accuracy. A task that happens twice a month will never repay a build, however tedious it feels to the person doing it.
The third failure mode is tasks with no defensible right answer. If two experienced people in your company would code the same document differently, the model has nothing to learn from and no benchmark to be measured against. Settle the disagreement first, then automate.
Drift is the fourth problem and it surfaces later than the others. A model that coded your invoices well in March can slip once your supplier mix changes, or once the provider ships a new version behind the same API name. The fix is boring and not optional: keep a small labelled test set, run it on a schedule, and raise an alert when the score moves.
What it costs, and how to tell if it paid
Running cost stopped being the obstacle a while ago. Stanford's AI Index found that inference for GPT-3.5-level performance fell more than 280-fold between November 2022 and October 2024. Pushing ten thousand documents a month through a model is now a rounding error next to the salary of whoever used to read them.
What costs money is the build: scoping, connecting to your systems, writing evals, and the review screen a human uses to correct the output. A single narrow automation usually lands in the low thousands of euros. Anything spanning several systems runs higher, because of the integration work rather than the AI. Our pricing page sets out how we scope this.
The arithmetic that decides it is simple. Count the hours the task eats each month, multiply by the loaded hourly cost of whoever does it, and take the share a first build can realistically absorb, call it 70%. If that figure does not clear the build cost inside a year, automate something else.
The compliance question that arrives late
The EU AI Act entered into force on 1 August 2024 and became applicable on 2 August 2026, with obligations for high-risk systems phasing in through 2027 and 2028. Bulgarian companies sit inside its scope like everyone else in the single market.
For the automations described here the practical burden is light. Most fall in the minimal-risk band. Anything that talks to a customer has to make clear it is a machine, which is a disclosure requirement rather than an engineering one. Systems touching hiring, credit or access to essential services fall in the high-risk category and need real documentation, so treat those as a different class of project from day one.
How to start without betting the company
Pick the single task with the highest volume and the cheapest errors. Build a prototype against real data: your actual invoices, your actual support tickets, not a tidy sample somebody assembled for the demo. Then measure its accuracy against a set of cases a person has already labelled correctly.
That measurement is the entire point. It gives you the real automation rate before you have committed to anything, and it is the number a polished demo will never give you. Our own AI automation work starts with a two-week proof of concept for exactly that reason: a working system, an eval score, and a recommendation that is sometimes "do not build this".
The verdict
AI automation earns its keep when a task is high-volume, semi-structured and forgiving of the occasional wrong answer. Outside those conditions it is an expensive way to feel modern. The technology is genuinely good now and the running costs are trivial, so capability is rarely what decides the outcome. Volume is.
The mistake we see most often in Bulgaria is not scepticism about AI. It is buying a platform before choosing a task. Start with one process, measure it honestly, and let the second automation be funded by what the first one saved.
Frequently asked questions
Is AI automation the same as RPA?
No. RPA replays recorded steps through a user interface and breaks when the screen layout changes. AI automation interprets content and works through APIs. Plenty of production systems run both: the model reads the document, the RPA bot types the result into legacy software that has no API.
How accurate is AI automation in practice?
For narrow extraction and classification tasks with a decent prompt and real evals, the low nineties is a fair expectation, and tightly specialised tasks go higher. Design for the remainder rather than pretending it away: uncertain cases should route to a person automatically, with the model's reasoning visible.
Does AI automation work in Bulgarian?
Yes. The major models read, classify and summarise Bulgarian well, and mixed Bulgarian-English input, which is what most Bulgarian support inboxes actually contain, needs no special handling. Bulgarian text the model writes still benefits from a human read before it reaches a customer.
What does a first AI automation project cost?
A single well-scoped automation usually lands in the low thousands of euros to build, with running costs measured in tens of euros a month. Projects spanning several systems cost more because of the integration work. The build is the expense; the model calls are not.
Do I need my data in a special format first?
No, and that is the main thing that changed. Scanned PDFs, email threads and free-text notes are all workable input now. What you do need is access: an API, an export, or a folder the system can read. Data locked inside a desktop application with no way out is the real blocker.
How long does a first project take?
Two to four weeks for a proof of concept that runs against your real data and produces a measured accuracy figure. Production hardening usually adds another month on top: monitoring, the review screen, the fallback paths, and whatever your own IT policy demands.
Not sure which task to automate first?
Tell us about the process that eats the most hours. We will say whether AI automation would actually help, and if it would, what the two-week proof of concept looks like.
Start the conversation →