(*args, **kwargs)
| 326 | ) |
| 327 | |
| 328 | def chat_handler_with_kwargs(*args, **kwargs): |
| 329 | return base_chat_handler( |
| 330 | *args, **{**settings.chat_template_kwargs, **kwargs} |
| 331 | ) |
| 332 | |
| 333 | _model.chat_handler = chat_handler_with_kwargs |
| 334 | if settings.cache: |
nothing calls this directly
no outgoing calls
no test coverage detected