@matheuskrumenauer/tanya 0.8.0-beta.0 → 0.9.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -0
- package/dist/cli.js +1004 -257
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -227,6 +227,35 @@ children.
|
|
|
227
227
|
See [docs/sub-agents.md](./docs/sub-agents.md) for permission inheritance,
|
|
228
228
|
budget-ledger semantics, cancellation, verifier composition, and memory rollup.
|
|
229
229
|
|
|
230
|
+
## Multi-model routing
|
|
231
|
+
|
|
232
|
+
Tanya can route each agent step to a different provider/model. Planning and
|
|
233
|
+
simple tool-call turns can use cheap chat models, while synthesis,
|
|
234
|
+
verification, and reasoning turns can use stronger models only when needed.
|
|
235
|
+
|
|
236
|
+
Default route profile:
|
|
237
|
+
|
|
238
|
+
| Step | Route | Fallback |
|
|
239
|
+
| --- | --- | --- |
|
|
240
|
+
| `planning` | `deepseek/deepseek-chat` | `qwen/qwen3-coder-plus` |
|
|
241
|
+
| `tool_call` | `deepseek/deepseek-chat` | `groq/llama-3.3-70b-versatile` |
|
|
242
|
+
| `synthesis` | `deepseek/deepseek-reasoner` | `openai/gpt-4.1-mini` |
|
|
243
|
+
| `verification` | `deepseek/deepseek-reasoner` | `openai/gpt-4.1-mini` |
|
|
244
|
+
| `reasoning` | `deepseek/deepseek-reasoner` | `qwen/qwen3-coder-plus` |
|
|
245
|
+
|
|
246
|
+
Project routes live in `.tania/routes.json`; user-global routes live in
|
|
247
|
+
`~/.tanya/routes.json` with a legacy read fallback from `~/.tania/routes.json`.
|
|
248
|
+
Use `/route` in the REPL to inspect the effective table, `/route show
|
|
249
|
+
<stepType>` to inspect one step, `/route set <stepType> <provider>/<model>` for
|
|
250
|
+
a session-only patch, and `/route reset` to clear session patches.
|
|
251
|
+
|
|
252
|
+
Escalations are visible: if a cheap route exhausts the malformed tool-call
|
|
253
|
+
repair budget, Tanya emits `escalation_event` and uses the route fallback once,
|
|
254
|
+
up to `TANYA_ESCALATION_CAP` per session.
|
|
255
|
+
|
|
256
|
+
See [docs/routing.md](./docs/routing.md) for schema, examples, context-window
|
|
257
|
+
guards, per-tool model overrides, and sub-agent model pins.
|
|
258
|
+
|
|
230
259
|
`--verify` adds required verification commands to the run context. Tanya must run and report each exact command before finishing the coding task.
|
|
231
260
|
|
|
232
261
|
`tanya benchmark run --all` currently exercises 27 executable low-to-medium regression fixtures: targeted edits, new files, dependency/lockfile updates, framework-style migrations, failing-test repair, frontend smoke checks, artifact/context reuse, streaming long-tool execution, compaction-boundary recovery, run-history logging, dirty worktrees, report repair, and the CosmoHQ mobile/backend smoke profiles.
|