From 98015388deeaad89d306cf499051be60d1b1c910 Mon Sep 17 00:00:00 2001 From: Sheldon Robinson Date: Thu, 4 Dec 2025 19:05:43 -0500 Subject: [PATCH] Remove deprecated chat parse functions Removed deprecated chat parsing functions. --- common/chat.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/chat.h b/common/chat.h index 6085510a40..7729885961 100644 --- a/common/chat.h +++ b/common/chat.h @@ -213,8 +213,6 @@ std::string common_chat_format_example( const char* common_chat_format_name(common_chat_format format); const char* common_reasoning_format_name(common_reasoning_format format); common_reasoning_format common_reasoning_format_from_name(const std::string & format); -common_chat_msg common_chat_parse(const std::string & input, bool is_partial, const common_chat_syntax & syntax); -common_chat_msg common_chat_peg_parse(const common_peg_arena & parser, const std::string & input, bool is_partial, const common_chat_syntax & syntax); common_chat_tool_choice common_chat_tool_choice_parse_oaicompat(const std::string & tool_choice);