<?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: Paxa Labs</title>
    <description>The latest articles on DEV Community by Paxa Labs (@paxalabs).</description>
    <link>https://dev.to/paxalabs</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%2F4098870%2F2be86974-880c-4fc5-8b51-1cae9babfee2.png</url>
      <title>DEV Community: Paxa Labs</title>
      <link>https://dev.to/paxalabs</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/paxalabs"/>
    <language>en</language>
    <item>
      <title>Introducing Paxa Labs</title>
      <dc:creator>Paxa Labs</dc:creator>
      <pubDate>Fri, 28 Aug 2026 11:40:20 +0000</pubDate>
      <link>https://dev.to/paxalabs/introducing-paxa-labs-neo</link>
      <guid>https://dev.to/paxalabs/introducing-paxa-labs-neo</guid>
      <description>&lt;p&gt;Paxa Labs is an AI research lab in Bangkok. We build speech, translation, and document models for Thai and English, and ship them as one API.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why a lab for Thai
&lt;/h2&gt;

&lt;p&gt;Thai breaks the assumptions most language tooling is built on. Words are written without spaces, so something has to decide where one word ends and the next begins. Tone changes the word. Speakers move between Thai and English inside a sentence, with a product name and a number in the same breath. Business documents stack Thai and English text, tables, stamps, and handwriting on one page.&lt;/p&gt;

&lt;p&gt;General-purpose models treat all of this as edge cases. For anyone building for Thai users, it is the input.&lt;/p&gt;

&lt;p&gt;So we start from failures in real Thai speech, text, and documents. A failure becomes a data example and an evaluation. Repeated patterns shape the model, the training method, and the serving stack. The improved system goes back into the product, where the next difficult input tells us what to investigate next.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is live today
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Text to speech.&lt;/strong&gt; Paxa Flash (&lt;code&gt;paxa-tts-flash-v1&lt;/code&gt;) is our proprietary Thai speech model: 26 voices, including Isan, Northern, and Southern regional accents and English-first voices. MP3, Opus, or WAV, buffered or streamed, with optional word, sentence, or utterance timestamps. A WebSocket endpoint synthesizes as you send text, for agents and live captions. There is an OpenAI-compatible &lt;code&gt;/v1/audio/speech&lt;/code&gt; alias, so an existing client works after a base URL change.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;OCR.&lt;/strong&gt; &lt;code&gt;paxa-ocr-lite-v1&lt;/code&gt; is our proprietary document model for PDF, PNG, JPEG, and WebP. Output is per-page Markdown or typed blocks (headings, paragraphs, lists, tables, figures). It is built for the documents Thai businesses actually handle: mixed scripts, stacked marks, stamps, and handwritten notes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Translation.&lt;/strong&gt; &lt;code&gt;paxa-translation-lite-v1&lt;/code&gt; translates fourteen source languages into Thai, with controls for formality, borrowed-word handling, a glossary, do-not-translate terms, and reference context. Markdown and HTML modes translate the prose and leave the markup in place, which matters in Thai: a tag moved by one character moves a word boundary.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Speech recognition&lt;/strong&gt; is still research. It ships when it survives real Thai audio.&lt;/p&gt;

&lt;h2&gt;
  
  
  One API, one meter
&lt;/h2&gt;

&lt;p&gt;Every product bills in credits, 1,000 credits to a dollar, pay as you go or on a monthly plan:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Text to speech: $15 per million characters&lt;/li&gt;
&lt;li&gt;Translation: $25 per million characters of text&lt;/li&gt;
&lt;li&gt;OCR: $0.0065 per page&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Every account starts with free credits. A request is charged before inference and refunded if inference fails, so a failed call never costs anything. We wrote up how that works and why it is the right order: &lt;a href="https://paxalabs.com/blog/charge-before-inference" rel="noopener noreferrer"&gt;Charge before inference, refund on failure&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  First request
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST https://api.paxalabs.com/v1/tts &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Authorization: Bearer &lt;/span&gt;&lt;span class="nv"&gt;$PAXA_API_KEY&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{
    "text": "สวัสดีค่ะ ยินดีต้อนรับสู่ Paxa Labs",
    "voice": "foithong",
    "model": "paxa-tts-flash-v1"
  }'&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--output&lt;/span&gt; speech.mp3
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Sign in with Google, GitHub, or Hugging Face, create a key, and the playground lets you try all three products in the browser before you write any code.&lt;/p&gt;

&lt;h2&gt;
  
  
  Built for agents too
&lt;/h2&gt;

&lt;p&gt;Every docs page at paxalabs.com/docs is also served as Markdown at its path plus .md. /llms.txt is the curated index, /llms-full.txt is the whole corpus, and an installable agent skill ships from the same source: npx skills add &lt;a href="https://paxalabs.com" rel="noopener noreferrer"&gt;https://paxalabs.com&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What we write about
&lt;/h2&gt;

&lt;p&gt;The lab's notebook covers the engineering behind the products, in English and Thai:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Thai has no word spaces, and it changes how a translation API has to work&lt;/li&gt;
&lt;li&gt;Counting the pages in a PDF, without a PDF library&lt;/li&gt;
&lt;li&gt;Charge before inference, refund on failure&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We will cross-post the next ones here. If you are building for Thai users and hitting something a general model gets wrong, we want to hear about it: &lt;a href="https://paxalabs.com/contact" rel="noopener noreferrer"&gt;https://paxalabs.com/contact&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>tts</category>
      <category>api</category>
      <category>thai</category>
    </item>
  </channel>
</rss>
