Increase NanoGPT timeout to 60s
Deploy to NAS / deploy (push) Successful in 59s

This commit is contained in:
2026-03-09 13:01:18 -04:00
parent 0e631bf029
commit e5ebb203fa
+1 -1
View File
@@ -72,7 +72,7 @@ export async function getAIResponse(prompt, channelId, mentionedUsername) {
Authorization: `Bearer ${process.env.NANOGPT_API_KEY}`, Authorization: `Bearer ${process.env.NANOGPT_API_KEY}`,
'Content-Type': 'application/json', 'Content-Type': 'application/json',
}, },
timeout: 30000, timeout: 60000,
} }
); );