sync: agent-ops from agentic-framework v1.1.199
This commit is contained in:
parent
ebf16c4675
commit
0983dcc332
3 changed files with 23 additions and 4 deletions
|
|
@ -1 +1 @@
|
|||
1.1.198
|
||||
1.1.199
|
||||
|
|
|
|||
|
|
@ -73,7 +73,10 @@
|
|||
"--auto",
|
||||
"{prompt}"
|
||||
],
|
||||
"output_format": "jsonl"
|
||||
"output_format": "jsonl",
|
||||
"environment": {
|
||||
"TMPDIR": "/tmp"
|
||||
}
|
||||
}
|
||||
},
|
||||
"opencode-glm-high": {
|
||||
|
|
@ -99,7 +102,10 @@
|
|||
"--auto",
|
||||
"{prompt}"
|
||||
],
|
||||
"output_format": "jsonl"
|
||||
"output_format": "jsonl",
|
||||
"environment": {
|
||||
"TMPDIR": "/tmp"
|
||||
}
|
||||
}
|
||||
},
|
||||
"opencode-glm-max": {
|
||||
|
|
@ -125,7 +131,10 @@
|
|||
"--auto",
|
||||
"{prompt}"
|
||||
],
|
||||
"output_format": "jsonl"
|
||||
"output_format": "jsonl",
|
||||
"environment": {
|
||||
"TMPDIR": "/tmp"
|
||||
}
|
||||
}
|
||||
},
|
||||
"codex-spark-xhigh": {
|
||||
|
|
|
|||
|
|
@ -180,6 +180,16 @@ class SelectorTests(unittest.TestCase):
|
|||
self.assertIn("iop-glm/glm-5.2", opencode.runtime["command"])
|
||||
self.assertEqual(opencode.reasoning_effort, "high")
|
||||
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"]
|
||||
self.assertEqual(terra.reasoning_effort, "high")
|
||||
self.assertIn(
|
||||
|
|
|
|||
Loading…
Reference in a new issue