diff --git a/src/api.ts b/src/api.ts index b8d27c0..29f4813 100644 --- a/src/api.ts +++ b/src/api.ts @@ -87,7 +87,7 @@ export function startServer({ cliOptions }: { cliOptions: CliOptions }) { app.all('*', (req: Request, res: Response) => { console.log(`Hitting catch all route: ${req.method} ${req.path}`); - res.send('Noting to see here. Try POST /chat/completions'); + res.send('Nothing to see here. Try POST /chat/completions'); }); app.listen(PORT, () => {