From f08a068206fe8627d690ba18662ee13bb2f0cb25 Mon Sep 17 00:00:00 2001 From: Sheldon Robinson Date: Thu, 4 Dec 2025 19:10:58 -0500 Subject: [PATCH] Remove common_chat_parse function Removed the common_chat_parse function and its implementation. --- common/chat.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/common/chat.cpp b/common/chat.cpp index 79845a2fe4..41a5bb42d5 100644 --- a/common/chat.cpp +++ b/common/chat.cpp @@ -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(); -} -