All models
agent
Coding agent
coding-agent
Autonomous agent with repo access; writes, refactors, tests and reviews code.
Decision and plan target (no provider attached) PII allowed Tool calling
- Price per 1M tokens
- $8.00
- $0.0080 per 1k
- Requests · 30d
- 0
- no traffic
- Latency
- 6000 ms
- declared
- Success rate
- n/a
- quality prior 0.85
Traffic over 30 days
Requests per day this target answered on this deployment, with the cost line.
No requests yet. Route something from the playground to see usage here.
- Tokens
- 0
- Spend
- $0
- Previous window
- 0 req
Routed for
Domains the signal layer detected on requests that ended here.
No routed requests yet. Declared domains: Coding.
Capabilities
DomainsCoding
ActionsCode Generation, Code Review, Reasoning, Action
Complexity band0.30 - 1.00
Languagesen
Context windowundeclared
Streamingyes
Tagsautonomous
Policy constraints
Hard stops enforced before scoring.
Data boundaryPublic
Regionsanywhere
PIIallowed
Max input tokensunlimited
Tenantsall
Representative prompts
Examples the similarity strategy matches against.
- Write a Python function that parses ISO-8601 dates and add unit tests.
- Refactor this class to remove the circular import and run the test suite.
- Find the bug in this stack trace and fix it.
Route to it
This agent is not executed by the platform. Ask the router for a decision restricted to kinds=["agent"] 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": "Write a Python function that parses ISO-8601 dates and add unit tests.", "kinds": ["agent"], "top_k": 3}'
# Returns the chosen target, confidence, the ranked alternatives and the
# per-strategy trace. Execution of agent 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": "Write a Python function that parses ISO-8601 dates and add unit tests.", "kinds": ["agent"]},
)
d = r.json()
print(d["target"]["id"], d["confidence"])
print([t["id"] for t in d["ranked"]]) # e.g. coding-agent first when it fits