Remove common_chat_parse function

Removed the common_chat_parse function and its implementation.
This commit is contained in:
Sheldon Robinson 2025-12-04 19:10:58 -05:00 committed by GitHub
parent b94da0bf98
commit f08a068206
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 11 deletions

View File

@ -2596,14 +2596,3 @@ common_chat_params common_chat_templates_apply(
? common_chat_templates_apply_jinja(tmpls, inputs)
: common_chat_templates_apply_legacy(tmpls, inputs);
}
common_chat_msg common_chat_parse(
const std::string & input,
bool is_partial,
const common_chat_syntax & syntax)
{
common_chat_msg_parser parser(input, is_partial, syntax);
common_chat_parse(parser);
return parser.result();
}