Instructions on how to install and set up the project.
# Command to run backend
git clone https://github.com/dakshkanaujia/hotel-booking-chatbot.git
cd backend
npm install
npm install -d nodemon cors express openai sqlite sequelize dotenv
npz nodemon src/app.js
first we have to create a .env file, and give API_KEY declaration then also define a PORT example
PORT = 8003
API_KEY = "sk-pro-**"
#endpoint
http://localhost:8003/chat
#req body example
{
"sessionId" : 1,
"Role" : "user",
"Content" : "Hello, how are you"
}