Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- feat(example): support server video inputs and Gemma text tool calls by @abetlen in #2291
- feat: update llama.cpp to ggml-org/llama.cpp@8f83d6c27
- fix(example): support multi-step Responses tool streaming by @abetlen in #2288
- fix(ci): Repair Linux accelerator wheels for manylinux publishing
Expand Down
6 changes: 3 additions & 3 deletions examples/server/configs/gemma-4-12b-it-qat.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
},
"tool_calls": {
"type": "array",
"x-regex-iterator": "<\\|tool_call>(call:[^\\{]+\\{.*?\\})<tool_call\\|>",
"x-regex-iterator": "<\\|tool_call>(call:[^\\{\\[]+[\\{\\[].*?[\\}\\]])<tool_call\\|>",
"items": {
"type": "object",
"properties": {
Expand All @@ -56,11 +56,11 @@
"properties": {
"name": {
"type": "string",
"x-regex": "^call:(\\w+)\\{"
"x-regex": "^call:(\\w+)[\\{\\[]"
},
"arguments": {
"type": "object",
"x-regex": "^call:\\w+(\\{.*\\})$",
"x-regex": "^call:\\w+(\\{.*\\}|\\[.*\\])$",
"x-parser": "gemma4-tool-call",
"additionalProperties": true
}
Expand Down
Loading
Loading