sync: agent-ops from agentic-framework v1.1.199

This commit is contained in:
toki 2026-08-13 06:18:18 +09:00
parent 3c5edb7569
commit baef1d2230
3 changed files with 23 additions and 4 deletions

View file

@ -1 +1 @@
1.1.198 1.1.199

View file

@ -73,7 +73,10 @@
"--auto", "--auto",
"{prompt}" "{prompt}"
], ],
"output_format": "jsonl" "output_format": "jsonl",
"environment": {
"TMPDIR": "/tmp"
}
} }
}, },
"opencode-glm-high": { "opencode-glm-high": {
@ -99,7 +102,10 @@
"--auto", "--auto",
"{prompt}" "{prompt}"
], ],
"output_format": "jsonl" "output_format": "jsonl",
"environment": {
"TMPDIR": "/tmp"
}
} }
}, },
"opencode-glm-max": { "opencode-glm-max": {
@ -125,7 +131,10 @@
"--auto", "--auto",
"{prompt}" "{prompt}"
], ],
"output_format": "jsonl" "output_format": "jsonl",
"environment": {
"TMPDIR": "/tmp"
}
} }
}, },
"codex-spark-xhigh": { "codex-spark-xhigh": {

View file

@ -180,6 +180,16 @@ class SelectorTests(unittest.TestCase):
self.assertIn("iop-glm/glm-5.2", opencode.runtime["command"]) self.assertIn("iop-glm/glm-5.2", opencode.runtime["command"])
self.assertEqual(opencode.reasoning_effort, "high") self.assertEqual(opencode.reasoning_effort, "high")
self.assertIn("{reasoning_effort}", opencode.runtime["command"]) self.assertIn("{reasoning_effort}", opencode.runtime["command"])
for target_id in (
"opencode-glm-medium",
"opencode-glm-high",
"opencode-glm-max",
):
with self.subTest(target_id=target_id):
self.assertEqual(
catalog.targets[target_id].runtime["environment"]["TMPDIR"],
"/tmp",
)
terra = catalog.targets["codex-terra-high"] terra = catalog.targets["codex-terra-high"]
self.assertEqual(terra.reasoning_effort, "high") self.assertEqual(terra.reasoning_effort, "high")
self.assertIn( self.assertIn(