Requests per day this target answered on this deployment, with the cost line.
requests (peak 12)
failed
Tokens
0
Spend
$0
Previous window
0 req
Routed for
Domains the signal layer detected on requests that ended here.
General Chat12 · 100%
Capabilities
DomainsGeneral
ActionsTranslate
Complexity band0.00 - 1.00
Languages*
Context windowundeclared
Streamingyes
Policy constraints
Hard stops enforced before scoring.
Data boundaryPublic
Regionsanywhere
PIIallowed
Max input tokensunlimited
Tenantsall
Representative prompts
Examples the similarity strategy matches against.
Translate this product description into French and German.
Translate to English: 'வணக்கம், எப்படி இருக்கிறீர்கள்?'
Route to it
This skill is not executed by the platform. Ask the router for a decision restricted to kinds=["skill"] and dispatch the winner in your own stack; send feedback afterwards so the learners improve.
curlbash
curl https://api.opensmartroute.ai/api/v1/route \
-H "Authorization: Bearer $OSR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "Translate this product description into French and German.", "kinds": ["skill"], "top_k": 3}'
# Returns the chosen target, confidence, the ranked alternatives and the
# per-strategy trace. Execution of skill targets happens in your stack.
httpxpython
import httpx
r = httpx.post(
"https://api.opensmartroute.ai/api/v1/route",
headers={"Authorization": "Bearer osr_live_..."},
json={"text": "Translate this product description into French and German.", "kinds": ["skill"]},
)
d = r.json()
print(d["target"]["id"], d["confidence"])
print([t["id"] for t in d["ranked"]]) # e.g. skill-translate first when it fits