(self, *args, **kwargs)
| 35 | |
| 36 | class ChatHandler(http.server.BaseHTTPRequestHandler): |
| 37 | def __init__(self, *args, **kwargs): |
| 38 | self.ollama_client = OllamaClient() |
| 39 | super().__init__(*args, **kwargs) |
| 40 | |
| 41 | def do_OPTIONS(self): |
| 42 | """Handle CORS preflight requests""" |
nothing calls this directly
no test coverage detected