fix: server crashes on missing module (#2089)

This commit is contained in:
Louis 2024-02-19 16:14:33 +07:00 committed by GitHub
parent 780f957b9a
commit e8f5c223b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 12 deletions

View File

@ -318,13 +318,6 @@ export const chatCompletions = async (request: any, reply: any) => {
apiUrl = engineConfiguration.full_url apiUrl = engineConfiguration.full_url
} }
reply.raw.writeHead(200, {
'Content-Type': 'text/event-stream',
'Cache-Control': 'no-cache',
'Connection': 'keep-alive',
'Access-Control-Allow-Origin': '*',
})
const headers: Record<string, any> = { const headers: Record<string, any> = {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
} }
@ -343,8 +336,14 @@ export const chatCompletions = async (request: any, reply: any) => {
}) })
if (response.status !== 200) { if (response.status !== 200) {
console.error(response) console.error(response)
return reply.code(400).send(response)
} else { } else {
reply.raw.writeHead(200, {
'Content-Type': 'text/event-stream',
'Cache-Control': 'no-cache',
'Connection': 'keep-alive',
'Access-Control-Allow-Origin': '*',
})
response.body.pipe(reply.raw) response.body.pipe(reply.raw)
} }
} }

View File

@ -27,19 +27,20 @@
"@npmcli/arborist": "^7.3.1", "@npmcli/arborist": "^7.3.1",
"dotenv": "^16.3.1", "dotenv": "^16.3.1",
"fastify": "^4.24.3", "fastify": "^4.24.3",
"request": "^2.88.2",
"fetch-retry": "^5.0.6", "fetch-retry": "^5.0.6",
"tcp-port-used": "^1.0.2", "node-fetch": "2",
"request-progress": "^3.0.0" "request": "^2.88.2",
"request-progress": "^3.0.0",
"tcp-port-used": "^1.0.2"
}, },
"devDependencies": { "devDependencies": {
"@types/body-parser": "^1.19.5", "@types/body-parser": "^1.19.5",
"@types/npmcli__arborist": "^5.6.4", "@types/npmcli__arborist": "^5.6.4",
"@types/tcp-port-used": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.3", "@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3", "@typescript-eslint/parser": "^6.7.3",
"eslint-plugin-react": "^7.33.2", "eslint-plugin-react": "^7.33.2",
"run-script-os": "^1.1.6", "run-script-os": "^1.1.6",
"@types/tcp-port-used": "^1.0.4",
"typescript": "^5.2.2" "typescript": "^5.2.2"
} }
} }