Classifiers

Tag incoming requests by category using keyword or regex rules, for analytics and reporting. Configure rules under Dashboard → Classifiers.

How it works

  • Each rule maps a keyword or regex match on the request input to a category label.
  • Rules run in priority order (lower first); the first match wins.
  • The category is written to the request log — no extra latency, no model call.

Classification is automatic; there is nothing to add to your request payload.

Example

A keyword rule with pattern bug, error, stack trace and category coding tags this request:

json
{
  "model": "gpt-4o",
  "messages": [{ "role": "user", "content": "I hit a BUG in the stack trace" }]
}
// → logged with category: "coding"

Tagged categories appear in the Category column of your Request Logs.