From a760b346f46304a4f983b6743322c99ac87df917 Mon Sep 17 00:00:00 2001 From: GitAneesh <146360468+GitAneesh@users.noreply.github.com> Date: Fri, 29 Sep 2023 12:25:19 +0530 Subject: [PATCH 1/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b6f2e0a..a685f8f 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ## Installation and Setup -1. Clone this repository to your local machine. +1. Clone this repository to your global machine. ```bash git clone https://github.com/deepak4566/AI_AUTOMATED_CHATBOT From cbb7440be09ef97e23d7e780934699a6dada5655 Mon Sep 17 00:00:00 2001 From: GitAneesh <146360468+GitAneesh@users.noreply.github.com> Date: Fri, 29 Sep 2023 12:26:54 +0530 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a685f8f..081f993 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ python app.python ## Credits - This project is based on OpenAI's GPT-3 API. -- The front-end interface is created using Bootstrap and jQuery. +- The front-end interface is created using Bootstraps and jouery. ## License From 46950cecdfca5b2f5c5f59f5252b0eda02da2b81 Mon Sep 17 00:00:00 2001 From: GitAneesh <146360468+GitAneesh@users.noreply.github.com> Date: Fri, 29 Sep 2023 14:09:43 +0530 Subject: [PATCH 3/4] Update README.md see what I have done is really exceptional unlike deepak --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 081f993..516c680 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ 1. Clone this repository to your global machine. ```bash -git clone https://github.com/deepak4566/AI_AUTOMATED_CHATBOT +git clone https://github.com/reyamit001/AI_AUTOMATED_CHATBOT ``` 2. Install the required dependencies using pip. @@ -32,7 +32,7 @@ export OPENAI_API_KEY='your-api-key-here' python app.python ``` -5. Open your web browser and navigate to http://localhost:5000 to use the chatbot. +5. Open your web browser and navigate to http://globalhost:5000 to use the chatbot. ## Usage @@ -46,7 +46,7 @@ python app.python ## Credits - This project is based on OpenAI's GPT-3 API. -- The front-end interface is created using Bootstraps and jouery. +- The front-end interface is created using Bootstraps and journy. ## License From 5a6806ef68c5f1cee0b5f92afe7bf935ee0b4c0f Mon Sep 17 00:00:00 2001 From: GitAneesh <146360468+GitAneesh@users.noreply.github.com> Date: Fri, 29 Sep 2023 14:20:26 +0530 Subject: [PATCH 4/4] Update app.py Added New Statement --- app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index da41d49..555c029 100644 --- a/app.py +++ b/app.py @@ -1,6 +1,4 @@ - # Assuming your chatbot code is in chatbot_api.py - - + # Assuming your chatbot code is in chatbot_api.py @app.route('/') @app.route('/index') @@ -18,4 +16,6 @@ def chatbot_endpoint(): return jsonify({"error": "Invalid request format"}), 400 + from flask import Flask, render_template, request, jsonify + import chatbot_api