Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -54,4 +54,4 @@ app.post("/", express.json(), async (req, res) => {
const port = Number(process.env.PORT || '3000')

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1

app.listen(port, () => {
console.log(`Server running on port ${port}`)
});
});