Skip to main content
POST
/
api
/
v1
/
routing-preferences
/
suggest-rule
Suggest a Rule From Corrections
curl --request POST \
  --url https://api.example.com/api/v1/routing-preferences/suggest-rule \
  --header 'Content-Type: application/json' \
  --data '
{
  "expected_mode": "<string>"
}
'
import requests

url = "https://api.example.com/api/v1/routing-preferences/suggest-rule"

payload = { "expected_mode": "<string>" }
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({expected_mode: '<string>'})
};

fetch('https://api.example.com/api/v1/routing-preferences/suggest-rule', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/v1/routing-preferences/suggest-rule",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'expected_mode' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.example.com/api/v1/routing-preferences/suggest-rule"

payload := strings.NewReader("{\n \"expected_mode\": \"<string>\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.example.com/api/v1/routing-preferences/suggest-rule")
.header("Content-Type", "application/json")
.body("{\n \"expected_mode\": \"<string>\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.example.com/api/v1/routing-preferences/suggest-rule")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"expected_mode\": \"<string>\"\n}"

response = http.request(request)
puts response.read_body
Generates a single suggested rule derived from the caller’s recent corrections for a given mode. Two-tier:
  1. Deterministic first. A pure helper extracts the highest-DF content tokens across the cluster’s prompts and assembles a safe \b(token1|token2|…)\b pattern. Vendor-name-scrubbed.
  2. LLM fallback. If the deterministic helper returns nothing (no surviving tokens), Theo asks an internal classifier model for a single regex that matches the sample prompts. Output is re-scanned for vendor names and compiled before being trusted. A fallback that fails either check returns 404 so no unsafe rule ever escapes.
The endpoint does not auto-append the rule. Callers PATCH the suggestion onto an existing preference (or add it to a new one) via PATCH /api/v1/routing-preferences/{id}.

Authentication

Requires a Bearer token with the billing API key scope.

Body

expected_mode
string
required
The Theo mode whose correction cluster you want a rule for.

Request Examples

curl
curl -X POST https://www.hitheo.ai/api/v1/routing-preferences/suggest-rule \
  -H "Authorization: Bearer $THEO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "expected_mode": "think" }'

Response

{
  "suggested_rule": {
    "pattern": "\\b(clause|provision|indemnity)\\b",
    "target_mode": "think",
    "confidence": 0.88,
    "description": "Generated from 4 corrections that all routed to think."
  },
  "source_correction_ids": ["corr_a", "corr_b", "corr_c", "corr_d"],
  "confidence": 0.88
}
confidence is 0.88 when the deterministic helper produced the pattern, 0.78 when the LLM fallback did.

Errors

  • 400 routing_suggest_below_threshold — Cluster for the requested mode has fewer corrections than the cluster threshold.
  • 404 not_found — No cluster exists for expected_mode, or no safe rule could be derived from the available samples.