-
Notifications
You must be signed in to change notification settings - Fork 12.7k
GPT-OSS: parse commentary tool calls; handle glued 'json'; add unit tests (#15102) #15158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Nerexis
wants to merge
1
commit into
ggml-org:master
Choose a base branch
from
Nerexis:fix/gpt-oss-tool-calls-parser
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+107
−2
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1319,9 +1319,55 @@ static common_chat_params common_chat_params_init_gpt_oss(const common_chat_temp | |
return data; | ||
} | ||
static void common_chat_parse_gpt_oss(common_chat_msg_parser & builder) { | ||
// TODO @ngxson : this won't work with --special enabled, we should fix that | ||
builder.try_parse_reasoning("<|channel|>analysis<|message|>", "<|start|>assistant<|channel|>final<|message|>"); | ||
static const common_regex next_block( | ||
"<\\|start\\|>assistant<\\|channel\\|>(?:commentary\\s+to=functions\\.([^\\s<\\|]+)(?:\\s+json)?|final)<\\|message\\|>"); | ||
|
||
if (!builder.syntax().parse_tool_calls) { | ||
if (auto res = builder.try_find_regex(next_block)) { | ||
while (true) { | ||
std::string fname = builder.str(res->groups[1]); | ||
const std::string header = builder.str(res->groups[0]); | ||
if (fname.size() > 4 && header.find(" json<|message|>") == std::string::npos) { | ||
if (fname.rfind("json") == fname.size() - 4) { | ||
fname.resize(fname.size() - 4); | ||
} | ||
} | ||
if (!fname.empty()) { | ||
if (!builder.try_consume_json_with_dumped_args({{}})) { | ||
break; | ||
} | ||
res = builder.try_find_regex(next_block); | ||
if (!res) break; | ||
continue; | ||
} | ||
builder.add_content(builder.consume_rest()); | ||
return; | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This condition block should be kept as is. When builder.syntex().parse_tool_calls is false, we just consume_rest without trying to parse tools. Move the tool processing after this block. |
||
} | ||
builder.add_content(builder.consume_rest()); | ||
return; | ||
} | ||
|
||
while (true) { | ||
auto res = builder.try_find_regex(next_block); | ||
if (!res) { | ||
builder.add_content(builder.consume_rest()); | ||
return; | ||
} | ||
std::string fname = builder.str(res->groups[1]); | ||
const std::string header = builder.str(res->groups[0]); | ||
if (fname.size() > 4 && header.find(" json<|message|>") == std::string::npos) { | ||
if (fname.rfind("json") == fname.size() - 4) { | ||
fname.resize(fname.size() - 4); | ||
} | ||
} | ||
if (!fname.empty()) { | ||
auto arguments = builder.consume_json_with_dumped_args({{}}); | ||
if (!builder.add_tool_call(fname, "", arguments.value) || arguments.is_partial) { | ||
throw common_chat_msg_partial_exception("incomplete tool call"); | ||
} | ||
continue; | ||
} | ||
builder.add_content(builder.consume_rest()); | ||
return; | ||
} | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing try_parse_reasoning would lose the ability to capture reasoning to reasoning_content field in the response. For gpt-oss, reasoning is the message from
analysis
channel.