File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -571,7 +571,7 @@ struct oaicompat_parser_options {
571
571
bool use_jinja;
572
572
bool prefill_assistant;
573
573
common_reasoning_format reasoning_format;
574
- const std::map<std::string,std::string> chat_template_kwargs;
574
+ std::map<std::string,std::string> chat_template_kwargs;
575
575
common_chat_templates * tmpls;
576
576
bool allow_image;
577
577
bool allow_audio;
@@ -750,7 +750,7 @@ static json oaicompat_chat_params_parse(
750
750
}
751
751
752
752
auto chat_template_kwargs_object = json_value (body, " chat_template_kwargs" , json::object ());
753
- for (const auto & item : default_template_kwargs ) {
753
+ for (const auto & item : opt. chat_template_kwargs ) {
754
754
inputs.chat_template_kwargs [item.first ] = item.second ;
755
755
}
756
756
for (const auto & item : chat_template_kwargs_object.items ()) {
You can’t perform that action at this time.
0 commit comments