Created
August 1, 2023 13:13
-
-
Save Barqawiz/dc501574bedf5b3fb38ab54a7a9a95c6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// When copying the code to the same file, ensure removing the repeated imports | |
const { Chatbot, ChatGPTInput, ChatGPTMessage } = require('intellinode'); | |
app.get('/chatgpt', async (req, res) => { | |
const chatbot = new Chatbot(process.env.OPENAI_API_KEY, 'openai'); | |
const system = 'You are a helpful assistant.'; | |
const input = new ChatGPTInput(system); | |
input.addUserMessage(req.query.message); | |
const responses = await chatbot.chat(input); | |
res.json({ responses }); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment