Skip to main content

Thai filler word classifier for voice bots - picks the right acknowledgment phrase while LLM thinks

Project description

filler-classifier

Thai filler word classifier for voice bots. Classifies customer input into categories and returns the appropriate filler phrase to play instantly while the LLM generates a full response.

Built for ingfah.ai voice bot but easily adaptable to any Thai voice AI system.

Why

Voice bots have a latency problem: the user speaks, ASR transcribes, then the LLM takes 1-3 seconds to respond. Dead silence feels broken. The solution is to play a short filler phrase ("สักครู่นะคะ", "ขออภัยด้วยน่ะคะ") immediately while the LLM thinks.

But you can't play the same filler for everything. If someone is angry, "ได้เลยค่ะ" sounds dismissive. If someone asks a question, "ขออภัยด้วยน่ะคะ" makes no sense.

This classifier picks the right filler by category.

Categories

Category When Example Fillers
complaint Angry, frustrated, profanity, threats ขออภัยด้วยน่ะคะ
question Asking for info, pricing, how-to สักครู่นะคะ, ตรวจสอบให้นะคะ
default Greetings, agreements, requests, everything else รับทราบค่ะ, ได้เลยค่ะ

Default Filler Phrases

Category Fillers
complaint ขออภัยด้วยน่ะคะ
question สักครู่นะคะ, สักครู่ค่ะ, ตรวจสอบให้นะคะ
default รับทราบค่ะ, ค่ะ ได้ค่ะ, ได้เลยค่ะ, ดีเลยค่ะ, ยินดีค่ะ

A random filler is picked from the matching category each time. These are designed to be short (~0.3-0.5s when synthesized) for minimal latency.

How It Works

Uses intfloat/multilingual-e5-small embeddings with centroid-based cosine similarity:

  1. Each category has ~30-60 anchor phrases (real Thai customer service examples)
  2. On init, all anchors are embedded and averaged into category centroids
  3. At inference, the input is embedded and compared to centroids via cosine similarity
  4. The closest category wins, and a random filler from that category is returned

Performance

  • Accuracy: 89.6% on 1,000 Thai customer service sentences
  • Inference: <10ms per classification (after model load)
  • Init: ~200ms for centroid computation
  • Model size: ~118MB (multilingual-e5-small)

Installation

pip install filler-classifier

Usage

from filler_classifier import FillerClassifier

# loads model automatically on first init
clf = FillerClassifier()

# classify and get category + confidence + filler
category, confidence, filler = clf.classify("อยากถามเรื่องบิลครับ")
# ("question", 0.872, "สักครู่นะคะ")

category, confidence, filler = clf.classify("ใช้งานไม่ได้เลย")
# ("complaint", 0.891, "ขออภัยด้วยน่ะคะ")

category, confidence, filler = clf.classify("ได้ครับ ตกลง")
# ("default", 0.845, "ได้เลยค่ะ")

# or just get the filler phrase directly
filler = clf.get_filler("มีโปรอะไรบ้างครับ")
# "ตรวจสอบให้นะคะ"

Sharing the model

If you already have a SentenceTransformer instance loaded (e.g., for other tasks), pass it in to avoid loading twice:

from sentence_transformers import SentenceTransformer
from filler_classifier import FillerClassifier

model = SentenceTransformer("intfloat/multilingual-e5-small")
clf = FillerClassifier(model=model)

Customizing Fillers

Override CATEGORY_FILLERS to use your own phrases:

import filler_classifier

filler_classifier.CATEGORY_FILLERS["complaint"] = ["ขออภัยค่ะ", "เข้าใจค่ะ"]
filler_classifier.CATEGORY_FILLERS["question"] = ["รอสักครู่นะคะ"]

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

filler_classifier-0.2.5.tar.gz (10.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

filler_classifier-0.2.5-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

Details for the file filler_classifier-0.2.5.tar.gz.

File metadata

  • Download URL: filler_classifier-0.2.5.tar.gz
  • Upload date:
  • Size: 10.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for filler_classifier-0.2.5.tar.gz
Algorithm Hash digest
SHA256 45db279c4a293423ace5371e515d6ff1a884e019a377b525d286b5a33d480ec6
MD5 640c9a478a267cc5c22cbc1e3eceb415
BLAKE2b-256 4f8650dc8025f567589644dc8a9db97fbb0e84183c44a0af5abaecd1fb95f799

See more details on using hashes here.

File details

Details for the file filler_classifier-0.2.5-py3-none-any.whl.

File metadata

File hashes

Hashes for filler_classifier-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 d4b6849ebcada763f05d3d2b45b57b8e33eab4cb9a72dafc94eafaab31df7057
MD5 b27e43e45ec713eb7639622c776ab074
BLAKE2b-256 c44373b5cbc81c9ac9505dbc8bd08848613f2092e7f7038c1a6018f7d9cfeb65

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page