<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mehmet Hakkı Yuvanç</title>
    <description>The latest articles on DEV Community by Mehmet Hakkı Yuvanç (@hakkiyuvanc).</description>
    <link>https://dev.to/hakkiyuvanc</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4111553%2F4aa5a26f-3b84-49e1-9f4b-ff009f58ad73.png</url>
      <title>DEV Community: Mehmet Hakkı Yuvanç</title>
      <link>https://dev.to/hakkiyuvanc</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hakkiyuvanc"/>
    <language>en</language>
    <item>
      <title>When Should an AI Suggestion Become a Financial Record?</title>
      <dc:creator>Mehmet Hakkı Yuvanç</dc:creator>
      <pubDate>Sat, 05 Sep 2026 19:22:25 +0000</pubDate>
      <link>https://dev.to/hakkiyuvanc/when-should-an-ai-suggestion-become-a-financial-record-3523</link>
      <guid>https://dev.to/hakkiyuvanc/when-should-an-ai-suggestion-become-a-financial-record-3523</guid>
      <description>&lt;p&gt;AI can classify an expense, propose a match between a bank transaction and an invoice, or flag an unusual cash-flow pattern. None of those outputs should automatically become accounting truth.&lt;/p&gt;

&lt;p&gt;That boundary matters more than raw model accuracy.&lt;/p&gt;

&lt;p&gt;A model output is probabilistic. A financial record changes operational state: balances, collections, reporting, tax workflows, and sometimes legally significant documents. Treating both as the same object creates a dangerous failure mode — a plausible prediction silently becoming a committed fact.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Store the suggestion as its own artifact
&lt;/h2&gt;

&lt;p&gt;An AI suggestion should be immutable and traceable. At minimum, keep:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the model and prompt/policy version,&lt;/li&gt;
&lt;li&gt;creation time and actor,&lt;/li&gt;
&lt;li&gt;source records used,&lt;/li&gt;
&lt;li&gt;confidence and human-readable reason codes,&lt;/li&gt;
&lt;li&gt;the proposed action,&lt;/li&gt;
&lt;li&gt;whether it was accepted, rejected, expired, or superseded.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This makes the question “Why did the system recommend this?” answerable later. It also gives you useful rejected examples without rewriting financial history.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Commit through domain rules, not model confidence
&lt;/h2&gt;

&lt;p&gt;A high confidence score is not authorization. Before a suggestion changes financial state, the application should still verify:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;tenant and user permissions,&lt;/li&gt;
&lt;li&gt;the current state of every affected record,&lt;/li&gt;
&lt;li&gt;amount, currency, tax, and document constraints,&lt;/li&gt;
&lt;li&gt;whether another process already completed the action,&lt;/li&gt;
&lt;li&gt;the required approval policy for that risk level.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The final write should be an explicit domain transition with an idempotency key and an audit event. This protects the system from retries, stale suggestions, and concurrent updates.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Use risk-based automation
&lt;/h2&gt;

&lt;p&gt;Not every recommendation needs the same control.&lt;/p&gt;

&lt;p&gt;A low-risk category suggestion might be saved as a draft. A bank reconciliation proposal may require a finance user to confirm it. A transition that affects a tax document, payment, ledger entry, or e-document status should usually require stronger validation and explicit approval.&lt;/p&gt;

&lt;p&gt;A useful policy considers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;financial amount,&lt;/li&gt;
&lt;li&gt;reversibility,&lt;/li&gt;
&lt;li&gt;document type,&lt;/li&gt;
&lt;li&gt;confidence,&lt;/li&gt;
&lt;li&gt;downstream impact,&lt;/li&gt;
&lt;li&gt;regulatory significance.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is controlled autonomy: automate more when the impact is limited and observable, and slow down when a mistake would propagate.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Reverse with compensating actions
&lt;/h2&gt;

&lt;p&gt;“Undo” should not mean deleting the evidence.&lt;/p&gt;

&lt;p&gt;If a user accepts the wrong transaction match, preserve the original suggestion, the acceptance event, the correction reason, and the new state. Create a compensating action that reverses the effect. That gives operators a truthful timeline and keeps the audit trail reconstructible.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Explain the evidence, not only the percentage
&lt;/h2&gt;

&lt;p&gt;“92% confidence” is rarely enough for a finance user. Better explanations look like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;amount exactly matches the open invoice,&lt;/li&gt;
&lt;li&gt;transaction date is within the expected window,&lt;/li&gt;
&lt;li&gt;reference text contains the invoice number,&lt;/li&gt;
&lt;li&gt;customer and bank-account ownership agree.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Concrete evidence turns human approval into a real control instead of a ceremonial click.&lt;/p&gt;

&lt;h2&gt;
  
  
  A practical architecture rule
&lt;/h2&gt;

&lt;p&gt;Keep three layers separate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Suggestion:&lt;/strong&gt; what the model thinks should happen.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Decision:&lt;/strong&gt; what policy and an authorized person allow.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Record:&lt;/strong&gt; what the financial system actually committed.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each layer should have its own identifier, timestamps, status, and audit events.&lt;/p&gt;

&lt;p&gt;This is the approach we are developing at &lt;a href="https://fiscusai.org/" rel="noopener noreferrer"&gt;FISCUS AI&lt;/a&gt;, an AI-assisted financial operating system for SMEs in Türkiye. Our focus is to make automation explainable, reversible, and consistent with the underlying financial state. We also describe the product's AI-accounting approach at &lt;a href="https://fiscusai.org/yapay-zeka-muhasebe" rel="noopener noreferrer"&gt;AI-assisted accounting for SMEs&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The important question is not “Can the model make this decision?” It is: &lt;strong&gt;What evidence, policy, and audit trail must exist before the system is allowed to commit it?&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>saas</category>
      <category>fintech</category>
      <category>architecture</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
