protected override async handleRequest(req: http.IncomingMessage, res: http.ServerResponse, runtime: ILoopbackProxyRuntime<ByokLmProxyState>): Promise<void> {
const pathname = new URL(req.url ?? '/', 'http://127.0.0.1').pathname;
this._logService.trace(`[${PROXY_USER_FACING_NAME}] ${method} ${pathname}`);
if (method === 'GET' && pathname === '/') {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('ok');