ChatBot is a chatbot application built with react and Webpack. It allows users to interact with a conversational agent and get responses based on predefined rules or machine learning algorithms.
To install the dependencies, run the following command:
npm install
npm run dev
Build the project for production:
npm run build
Navigate to the build directory:
cd dist
Install the Vercel CLI globally (if not already installed):
npm install -g vercel
vercel
Follow the prompts to log in to your Vercel account and deploy the project.
To use the bundled JavaScript file in your HTML, include the following script tag in your HTML file:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your App Title</title>
</head>
<body>
<div id="root"></div>
<script src="https://dist-iota-vert.vercel.app/bundle.js"></script>
</body>
</html>
- Send messages to the chatbot and receive responses.
- Customizable chatbot responses and behavior.
- Integration with external APIs for advanced functionality.
This project is licensed under the ISC License.