(f: LlamaChatCompletionHandler)
| 155 | |
| 156 | def register_chat_completion_handler(name: str): |
| 157 | def decorator(f: LlamaChatCompletionHandler): |
| 158 | LlamaChatCompletionHandlerRegistry().register_chat_completion_handler(name, f) |
| 159 | return f |
| 160 | |
| 161 | return decorator |
| 162 |
nothing calls this directly
no test coverage detected
searching dependent graphs…