diff --git a/index.js b/index.js index db71670..8d0a065 100644 --- a/index.js +++ b/index.js @@ -27,7 +27,7 @@ app.post("/", express.json(), async (req, res) => { }); messages.unshift({ role: "system", - content: `Start every response with the user's name, which is @${user.data.login}`, + content: "Start every response with the user's name, which is @${user.data.login}", }); // Use Copilot's LLM to generate a response to the user's messages, with @@ -54,4 +54,4 @@ app.post("/", express.json(), async (req, res) => { const port = Number(process.env.PORT || '3000') app.listen(port, () => { console.log(`Server running on port ${port}`) -}); \ No newline at end of file +});