功能介紹 使用流程 方案定價 常見問題 推廣合作 實用工具 開發者中心
免費試用 客戶登內
讓AI幫你回覆每一則訊息

Chung Tair AI Customer Service — multi-channel AI support (LINE, Facebook, Instagram & website) for Taiwan SMEs

Chung Tair AI Customer Service is a multi-channel AI support system built for Taiwan SMEs, supporting LINE, Facebook Messenger, Instagram, and a website widget. From NT$2,000/month with a 14-day free trial, deployable without engineers; built on a three-layer RAG architecture so the AI does not bluff and auto-hands off to a human when unsure — ideal for ecommerce, stores, courses, and service teams that want to auto-answer common questions and cut support load.

24/7
Auto-reply around the clock
4
Channels integrated
< 1 min
Average response time
Cloud-based
Always-on operation

Why Choose Chungtair AI?

Designed for Taiwan's SMBs — easy to use, powerful in practice

🤖
AI Smart Replies

Powered by advanced AI models that learn your product knowledge and deliver accurate customer service responses.

🔗
Multi-Platform Hub

Manage LINE, Facebook, and Instagram from one dashboard — all messages handled in one place.

📚
Custom Knowledge Base

Upload product info, FAQs, and documents. AI learns and responds in your brand voice.

Rapid Deployment

No technical background needed. Fill in your details and go live — as fast as same day.

📊
Usage Management

Track your monthly usage clearly. Flexible quota plans you can upgrade on demand.

🔒
Secure & Reliable

Encrypted data storage, compliant with Taiwan's Personal Data Protection Act.

Launch AI Support in 3 Steps

No technical knowledge required — set up in minutes

01
Apply

Fill in basic info, choose your plan, and activate your account instantly.

02
Build Knowledge Base

Upload product data and FAQs. AI automatically learns your business content.

03
Connect Channels

Authorize LINE / Facebook / Instagram, or generate a Web Widget embed snippet to paste on your own website — your bot goes live immediately.

Simple, Transparent Pricing

Choose the plan that fits your business scale

Basic
NT$2,000 / month

  • 2 AI bots (LINE / FB / IG / Web Widget, your choice)
  • 2,000 messages / month
  • Unlimited knowledge base entries
  • Usage analytics dashboard
  • Supports image & URL messages
  • LINE customer support
Apply Now
⭐ Most Popular
Advanced
NT$3,500 / month

  • 3 AI bots (cross-platform deployment)
  • 4,000 messages / month
  • Unlimited knowledge base entries
  • Usage analytics dashboard
  • Supports image & URL messages
  • Priority LINE customer support
Apply Now
Professional
NT$4,500 / month

  • 4 AI bots (cross-platform deployment)
  • 6,000 messages / month
  • Unlimited knowledge base entries
  • Usage analytics dashboard
  • Supports image & URL messages
  • Dedicated LINE customer support
Apply Now

Trusted Service Architecture

Chungtair partners with industry-leading service providers to deliver a stable, reliable foundation for your business.

Credit Card Payment Encryption
by TapPay | Industry-standard encryption
Automatic e-Invoice Issuance
by Cetustek | ISO 27001 Certified
Full-Site HTTPS Encryption
TLS end-to-end transport protection
Registered Taiwan Entity
Tax ID 60701564 | Financially Transparent
Local Customer Support
Traditional Chinese / English / Japanese

About Chungtair

Chungtair Enterprise Co., Ltd. (Chung Tair Ltd.) was founded in 2025 and headquartered in Kaohsiung, Taiwan. We are a software company focused on AI customer service automation. We build deployable multi-platform smart customer service systems for Asian SMEs — making AI speak human for your brand.

Why Choose Chungtair AI

Four Channels in One
Native LINE / Facebook Messenger / Instagram integration with one-click OAuth, plus a customer-website Web Widget (paste a single <script> before </body> on the customer's own site). No webhook or token setup needed for any channel.
Drag-and-Drop Knowledge Base
Drop PDF, Word, or Excel files and a next-gen LLM reads the entire document at once, auto-splitting into Q&A entries. Templates included.
AI Will Not Hallucinate
Three-layer safety net (Fixed Reply → RAG → Fallback) ensures every answer is grounded in your knowledge base.
Rich Replies, Not Just Text
AI replies with text, images, and links together — no extra clicks needed. Each image is independently checked for relevance to the question, preventing mismatches from borderline entries dragging in unrelated images.
Auto-Handoff to Humans
Four trigger types automatically pass to human agents, AI returns when you are done, and a handoff summary is generated for staff.
Knowledge Gap Tracking
Unanswered questions are logged and ranked by frequency — see exactly which knowledge to add.
Multi-Question Messages, Cleanly Answered
Customer asks three things at once? No problem. The system splits compound questions, runs separate retrieval and image matching for each, and replies with separate messages — one answer per sub-question, never compressed into a single muddled paragraph.
Inbound Images, with Policy
When customers send images, each merchant can choose: auto-handoff to live agent, prompt the customer to describe in text, or stay silent. Prevents AI from hallucinating image content, and lets each industry set its own rules.

Core Retrieval Technology

HyDE — Hypothetical Document Embeddings
LLM generates a hypothetical answer for the user query, then uses that answer embedding for vector retrieval. Specifically applied to article-type entries (item_type = article) to enhance semantic matching for long-form content.
Hybrid Search + RRF
Parallel pgvector cosine similarity search and PostgreSQL ILIKE keyword search, merged via Reciprocal Rank Fusion (k=60). Default hybrid_weight=0.3 favors semantic search, tunable per bot.
Multi-Query Retrieval
Rewritten query and original user query both execute searches; results merged taking the highest similarity score per item. Used in the fixed-reply decision phase to avoid edge cases missed by rewrite.
Query Rewriting + Compound Detection
LLM rewrites follow-up questions into self-contained queries with full pronoun resolution and context (handling cases like How much is it or What is its size that rely on prior context), and simultaneously detects whether the message is a compound question. On detection, the system auto-splits into multiple independent sub-questions for downstream handling. Rewrite, detect, and split happen in one pass — avoiding false handoff triggers from misclassified compound queries.
Topic Summary Auto-Compilation
When entries reach 5 or more, LLM clusters same-topic items and generates summary entries (item_type = summary). Summary entries receive 1.4× RRF boost, accelerating retrieval for overarching questions.
Contradiction Detection
New entries are first filtered by vector similarity ≥ 0.6, then sent to LLM for comparison against numerical or policy conflicts. Graceful degradation: if LLM fails, returns has_contradiction=False without blocking the write.
Three-Layer Reply Architecture
① Fixed Reply: similarity ≥ 0.90 + length > 4 + non-compound query; ② RAG: top-3 entries form context for LLM generation; ③ Fallback: below min_similarity (default 0.4) returns safe message. Each layer has independent thresholds for traceable replies.
Multi-KB Architecture
Every search hits both client-private KB and system-shared KB, merged via RRF. System KB hits can independently pass the fallback threshold, providing rescue when client KB misses.
Rich Media Reply with Per-Card Threshold
AI responses can deliver text, images, and URLs simultaneously, with each platform using its native multi-message format. Each referenced knowledge card is independently checked for semantic precision — only cards crossing the threshold contribute media, eliminating borderline topic entries dragging in unrelated images mismatches.
pgvector + IVFFlat
PostgreSQL pgvector extension stores 1536-dim embeddings (OpenAI text-embedding-3-small), with ivfflat index (vector_cosine_ops, lists=10) for enterprise-grade retrieval performance.
Auto Human Handoff System
Four trigger types (intent / ai_struggling / fallback / code) + Pause Timer (Redis ai_disabled key with TTL) + LLM auto-generated handoff summary (six writing principles). Fallback counter uses Redis 24h rolling counter, triggers at configured threshold (default 2, range 1–10).
Smart Handoff Structured Output
When smart handoff is enabled, LLM produces output via OpenAI strict JSON schema (reasoning / needs_handoff / intent / reply fields). The intent enum is locked to AI cannot process plus merchant-defined scenarios, preventing parse failures from free-form LLM output.
Multi-Platform OAuth & Webhook
Unified webhook endpoints for LINE / Facebook Messenger / Instagram (e.g., /webhook/line/redis_id/bot_id). OAuth 2.0 flows support LINE Login / Google / Facebook / IG Graph API with CSRF tokens cached in Redis with TTL.
Compound Question Handling
When customers ask multiple things in one message (e.g. Where is the water source? Can you install in Kaohsiung?), the system auto-splits into independent sub-questions, runs complete RAG retrieval and media matching for each, and finally sends multiple separate messages — each replying only to that sub-question with its corresponding media. Eliminates image-text mismatches and information compression from forced merged answers.
Knowledge Gap Auto-Tracking
Any scenario where AI cannot answer — fallback safe-response, AI self-evaluation failure, sub-question miss in a compound query, smart handoff trigger — is automatically logged as a Knowledge Gap and ranked by frequency for administrators. Owners can identify the next KB entries to add at a glance, without manually reviewing conversation logs.
Document Direct-Read Import
When customers drag PDF / Word / Excel files into the admin panel, the system uses GPT-5-class models to read entire documents in batches — capturing document structure, tables, and policy sections in one pass, auto-splitting into knowledge base entries. Bypasses the traditional multi-stage lossy pipeline of first OCR / text heuristics extracting paragraphs, then small models stitching them together.
Inbound Image Strategy
When customers send images, each merchant can choose a handling policy per scenario: ① Auto-handoff to live agent (portraits, on-site photos, product shots); ② Text prompt asking customers to describe in text; ③ Silent ignore (avoid noise interference). Prevents AI from hallucinating image content, and gives each industry flexibility.

Supported Platforms & Languages

Native integration with LINE, Facebook Messenger, Instagram — three social platforms — plus a customer-website Web Widget (one-line <script> embed on the customer's own site), four channels in total. Supports Traditional Chinese, English, Japanese, optimized for Asian business contexts. Deploy once, run synchronously across all four channels.

Frequently Asked Questions (FAQ)

Have more questions? We have put together full Q&As covering pricing, features, comparisons, and use cases.

Go to FAQ →

Chungtair AI Support
😊 Hello! How can I help you?