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 รับทราบค่ะ, ได้เลยค่ะ

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.1.0.tar.gz (6.9 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.1.0-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: filler_classifier-0.1.0.tar.gz
  • Upload date:
  • Size: 6.9 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.1.0.tar.gz
Algorithm Hash digest
SHA256 e15ae944822304a0f9c94563a1805a2f261a3715e96f242dab76c092aa9a3f6e
MD5 d2a3a4839ce01be7d6f71b8ed6f47113
BLAKE2b-256 d521ec7bab0a11423718b2b684555be760828170e3da4255a4884b01f3fd4f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for filler_classifier-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cae66614d1d47b0d14d53016715c4b5137b6a3aac8bcebb139e856c01ec9d033
MD5 40f56f1a804fc482411808f30fdd6c33
BLAKE2b-256 c4a10dc992a4b303ca2c69204241c10fc255d314c444a65461407ea4a89a1843

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