February 4, 2025 - Uncategorized
Creating a chatbot using OpenAI’s ChatGPT API can significantly enhance your applications by providing quick and intelligent responses. This guide will walk you through the process of setting up an OpenAI account, retrieving API keys, and creating a chatbot with Node.js and Express.
mkdir chatbot
cd chatbot
npm init -y
express
and openai
packages: npm install express openai
server.js
file in your project root directory and add the following code to set up a basic Express server: const express = require("express");
const app = express();
app.use(express.static("public"));
app.listen(5000, () => {
console.log("Server is active");
});
This server will serve static files from the /public
directory.
public
directory in your project root.public
directory, create an index.html
file with the following content: <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chatbot</title>
<style>
/* Styles here */
</style>
</head>
<body>
<div id="chat-area"></div>
<div class="submit-form">
<div class="input">
<textarea name="input" id="input" cols="40" rows="3"></textarea>
<button id="btn">Submit</button>
</div>
</div>
<script>
/* JavaScript here */
</script>
</body>
</html>
<style>
tags to style the chat interface.<script>
tags in index.html
, add an event listener to handle the submit button click: const btn = document.getElementById("btn");
btn.addEventListener("click", getResponse);
async function getResponse() {
var inputText = document.getElementById("input").value;
const parentDiv = document.getElementById("chat-area");
if (inputText === "") {
return;
}
const question = document.createElement("div");
question.innerHTML = inputText;
question.classList.add("box");
parentDiv.appendChild(question);
document.getElementById("input").value = "";
let res = await fetch("http://localhost:5000/chat", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({ question: inputText }),
});
const data = await res.json();
if (data.message) {
const answer = document.createElement("div");
answer.innerHTML = data.message;
answer.classList.add("box", "answer");
parentDiv.appendChild(answer);
}
}
server.js
, import and set up OpenAI: const { OpenAI } = require("openai");
const openai = new OpenAI({
apiKey: "your-api-key",
});
app.use(express.json());
app.post("/chat", async (req, res) => {
try {
const resp = await openai.chat.completions.create({
model: "gpt-3.5-turbo",
messages: [{ role: "user", content: req.body.question }],
});
res.status(200).json({ message: resp.choices[0].message.content });
} catch (e) {
res.status(400).json({ message: e.message });
}
});
After setting up the server and the frontend, you should be able to run your Node.js application and interact with your ChatGPT-powered chatbot through the browser. This setup allows you to leverage the capabilities of OpenAI’s models to enhance your applications with intelligent chat functionalities.
node server.js
http://localhost:5000
to see your chatbot interface.This guide provides a basic framework to get you started with creating a chatbot using OpenAI’s API. You can further customize and expand the functionality based on your needs.