diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-24 23:49:42 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-24 23:49:42 +0200 |
| commit | 9e3ae0f5847f73eea73af6ed9f49f93bf2b811f4 (patch) | |
| tree | d9e8acc1931d56803b5d1e4a96931f5c9929534c /pi | |
| parent | 9731b82818a2a199a8d826ae3e406c61572c2b6f (diff) | |
gpt-oss-120b: enable reasoning via openai_gptoss parser
- Add --reasoning-parser openai_gptoss to gpt-oss-120b vLLM config in
all three toml files; extracts <|channel|>analysis thinking blocks
into reasoning_content in API responses
- Mark gpt-oss-120b as reasoning: true in pi/agent/models.json for all
three providers (hyperstack, hyperstack1, hyperstack2)
- Update vm1 state file
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'pi')
| -rw-r--r-- | pi/agent/models.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pi/agent/models.json b/pi/agent/models.json index 3dfd72d..c8f08c1 100644 --- a/pi/agent/models.json +++ b/pi/agent/models.json @@ -13,7 +13,7 @@ { "id": "openai/gpt-oss-120b", "name": "GPT-OSS 120B [vm]", - "reasoning": false, + "reasoning": true, "input": ["text"], "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 }, "contextWindow": 131072, @@ -137,7 +137,7 @@ { "id": "openai/gpt-oss-120b", "name": "GPT-OSS 120B [vm1]", - "reasoning": false, + "reasoning": true, "input": ["text"], "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 }, "contextWindow": 131072, @@ -233,7 +233,7 @@ { "id": "openai/gpt-oss-120b", "name": "GPT-OSS 120B [vm2]", - "reasoning": false, + "reasoning": true, "input": ["text"], "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 }, "contextWindow": 131072, |
