Skip to main content

rag_intent_classifier

A production-ready, offline intent classifier that can sit right before any RAG system, domain-aware router, or any routing layer where fast intent decisions are needed. It runs before retrieval or downstream routing so your application can detect follow-up, escalation, urgent, human-handoff, negative-sentiment, and general-support requests early and route them intelligently.

Why this package exists

Most RAG pipelines, domain-aware routing systems, and other decision-heavy workflows focus on retrieval or downstream handling, but they often skip the most important first step: User intent classification.

This package helps you identify whether a user query is:

  • a normal domain request,
  • a follow-up question,
  • a request to connect to a human,
  • an escalation,
  • an urgent issue,
  • or negative sentiment that should not trigger normal search.
  • 150 default labels (The full mapping is stored in the bundled model asset at rag_intent_classifier/models/label_map.joblib)

That makes retrieval more accurate and reduces unnecessary document search.

What it does

  • Classifies intents using MiniLM embeddings and packaged classical ML models
  • Returns human-readable labels for downstream routing
  • Returns a confidence score for each prediction so you can decide when to route safely or fall back to an LLM or custom logic
  • Works offline with no external API dependency
  • Supports a simple Python API and CLI

Supported meta-intent labels

The current release surfaces these labels for routing-heavy RAG scenarios:

  • follow_up
  • connect_to_human
  • escalate_issue
  • negative_sentiment
  • urgent_attention_required
  • general_customer_support
  • and additional 150 intents

These are especially useful for routing to a human, skipping standard retrieval, when to send chat history, narrowing search to the right support context, etc.

Quick comparison

Without using intent classifier With using intent classifier
Every query goes through the same retrieval flow Urgent, follow-up, and escalation requests can be detected early
More irrelevant context may be searched Routing becomes more precise and efficient
Human handoff needs are harder to identify Support workflows can be triggered faster and more accurately

This model is trained on a total of 17k+ labelled rows, with 3.8k+ validation rows and 5.7k+ test rows to support reliable intent routing.

Note: This classifier is built on general-purpose intent data and is intended as a strong starting point. For production use in a specific domain such as insurance, banking, sports, HR, consulting, or customer support, it is recommended to fine-tune or retrain the model on domain-specific examples for better accuracy and more relevant routing.

Architecture in a RAG pipeline

The package acts as the first decision layer in a RAG system.

Intent Classifier architecture

Architecture Diagram

In practice, once the intent is classified, the retrieval step becomes smaller and more precise: the system can route to the right workflow, focus on the most relevant evidence and reduce the search area/scope dramatically.

Included capabilities

  • 156 intents total (150 CLINC + 6 additional meta-intents)
  • MiniLM embeddings
  • Multiple packaged classifier models
  • Offline inference
  • Human-readable labels
  • Simple Python API and CLI

Installation

Python 3.9 to 3.12 is the currently supported range for this package. This release uses a pinned dependency stack for reproducible installs and model compatibility. Python 3.13 is not currently targeted for this release.

If you try to install on Python 3.13 or newer, pip will now consider the package installable because the metadata declares requires-python = ">=3.9,<3.14". That means the package is now advertised as installable for Python 3.13+, although runtime compatibility should still be validated in your target environment.

pip install rag_intent_classifier

Quick start

from rag_intent_classifier import infer_intent

result = infer_intent("How do I renew my policy?")
print(result)

Each result contains:

  • intent: the predicted label
  • confidence: a score between 0 and 1 when available
  • reason: a short explanation of how the result was produced

For routing logic, a practical starting point is to use a confidence threshold such as 0.60 to 0.85. If the score is below your threshold, you can safely fall back to an LLM, a human handoff, or a custom rule-based fallback. A threshold around 0.60 is a reasonable default for many support or routing workflows, while more conservative systems may prefer 0.70 or higher. The exact threshold depends on your domain risk tolerance and should be tuned on your own validation data.

CLI usage

rag_intent_classifier "How do I renew my policy?"

Sample inputs and outputs

Here are a few example predictions the model can return:

from rag_intent_classifier import infer_intent

print(infer_intent("Can you connect me to a human?"))
print(infer_intent("Can you follow up on my previous request?"))
print(infer_intent("I'm extremely unhappy with this service."))

Example output:

[{'intent': 'connect_to_human', 'confidence': 0.95, 'reason': 'predicted by classifier with probability-based score'}]
[{'intent': 'follow_up', 'confidence': 0.91, 'reason': 'predicted by classifier with probability-based score'}]
[{'intent': 'negative_sentiment', 'confidence': 0.97, 'reason': 'predicted by classifier with probability-based score'}]

Development install

git clone https://github.com/yuvarajd2588/rag_intent_classifier.git
cd rag_intent_classifier
pip install -e .

Download files

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

Source Distribution

rag_intent_classifier-1.0.7.tar.gz (2.1 MB view details)

Uploaded Source

Built Distribution

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

rag_intent_classifier-1.0.7-py3-none-any.whl (2.2 MB view details)

Uploaded Python 3

File details

Details for the file rag_intent_classifier-1.0.7.tar.gz.

File metadata

  • Download URL: rag_intent_classifier-1.0.7.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.9

File hashes

Hashes for rag_intent_classifier-1.0.7.tar.gz
Algorithm Hash digest
SHA256 0e7fb42ecce49f71e021eb00e80e98c0ce43a7c3667dc691a4764b05ef0fd16e
MD5 21415597602390e1b0c14100d1cf8d15
BLAKE2b-256 7861b5416808f4f7dd08327af3aa1795a9735555dec603232372e0c783445f30

See more details on using hashes here.

File details

Details for the file rag_intent_classifier-1.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for rag_intent_classifier-1.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 25be31b6e36e3ece25e0b5a651854f21c08d4a08b003c98811da6d77d218a226
MD5 c21339ace1035b6e5ab499cd96b16d97
BLAKE2b-256 c27a88465f5127e8e1611fdcf4662627ebdf8d222a98b5627ea524d5eaf3f540

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.0.7 This release

2 files

1.0.6

2 files

1.0.5

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page