summaryrefslogtreecommitdiff
path: root/lib/hyperstack/manager.rb
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-24 15:09:01 +0300
committerPaul Buetow <paul@buetow.org>2026-05-24 15:09:01 +0300
commit897c9f99a8ae03c40f672b39bd8cadb2df9b1bdc (patch)
treea31878388612a15702efe806e03b558cc99d5a02 /lib/hyperstack/manager.rb
parentdffa66a331350fb7995bf93cff49b978a9288459 (diff)
chore(config): remove gpt-oss-120b references since qwen3.6 is better
Diffstat (limited to 'lib/hyperstack/manager.rb')
-rw-r--r--lib/hyperstack/manager.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hyperstack/manager.rb b/lib/hyperstack/manager.rb
index 7a68199..e8382bb 100644
--- a/lib/hyperstack/manager.rb
+++ b/lib/hyperstack/manager.rb
@@ -938,7 +938,7 @@ module HyperstackVM
req.body = JSON.generate(
'model' => model,
'messages' => [{ 'role' => 'user', 'content' => prompt }],
- # 500 tokens: reasoning models (e.g. gpt-oss) use tokens for chain-of-thought
+ # 500 tokens: reasoning models use tokens for chain-of-thought
# before content; 50 is too small and yields an empty content field.
'max_tokens' => 500
)