File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ struct common_chat_templates_inputs {
7474    bool  parallel_tool_calls = false ;
7575    bool  extract_reasoning     = true ;
7676    std::chrono::system_clock::time_point now = std::chrono::system_clock::now();
77-     std::map<std::string,std::string> chat_template_kwargs;
77+     std::map<std::string,  std::string> chat_template_kwargs;
7878};
7979
8080struct  common_chat_params  {
Original file line number Diff line number Diff line change @@ -375,7 +375,7 @@ struct common_params {
375375    std::string ssl_file_key  = " "  ;                                                                         //  NOLINT
376376    std::string ssl_file_cert = " "  ;                                                                         //  NOLINT
377377
378-     std::map<std::string,std::string> default_template_kwargs;
378+     std::map<std::string,  std::string> default_template_kwargs;
379379
380380    //  "advanced" endpoints are disabled by default for better security
381381    bool  webui            = true ;
Original file line number Diff line number Diff line change @@ -729,7 +729,7 @@ static json oaicompat_completion_params_parse(
729729    inputs.add_generation_prompt  = json_value (body, " add_generation_prompt"  , true );
730730
731731    auto  chat_template_kwargs_object = json_value (body, " chat_template_kwargs"  , json::object ());
732-     for  (const  auto  & item: default_template_kwargs) {
732+     for  (const  auto  & item  : default_template_kwargs) {
733733        inputs.chat_template_kwargs [item.first ] = item.second ;
734734    }
735735    for  (const  auto  & item : chat_template_kwargs_object.items ()) {
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments