Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions crates/goose/src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ static MODEL_SPECIFIC_LIMITS: Lazy<HashMap<&'static str, usize>> = Lazy::new(||

// x.ai Grok models, https://docs.x.ai/docs/overview
map.insert("grok", 131_072);

// Additional OpenRouter models
map.insert("qwen/qwen3-coder", 262_144); // 262K
map.insert("x-ai/grok-4", 256_000); // 256K
Comment thread
michaelneale marked this conversation as resolved.
Outdated

map
});

Expand Down
Loading