sync: agent-ops from agentic-framework v1.1.199
This commit is contained in:
parent
3c5edb7569
commit
baef1d2230
3 changed files with 23 additions and 4 deletions
|
|
@ -1 +1 @@
|
||||||
1.1.198
|
1.1.199
|
||||||
|
|
|
||||||
|
|
@ -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": {
|
||||||
|
|
|
||||||
|
|
@ -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(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue