From 70222ca37089fe90d3b944ae09b6432aaf3c178c Mon Sep 17 00:00:00 2001 From: Poojya-569 <146369791+Poojya-569@users.noreply.github.com> Date: Fri, 29 Sep 2023 12:25:42 +0530 Subject: [PATCH 1/6] Update README.md add Poojya, full stops and underscore --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b6f2e0a..dc2cef8 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -# OpenAI's Chatbot - +# OpenAI's Chatbot. +Poojya ## Features -## Installation and Setup +## Installation and Setup. 1. Clone this repository to your local machine. @@ -26,7 +26,7 @@ pip install -r requirements.txt export OPENAI_API_KEY='your-api-key-here' ``` -4. Run the Flask application. +4. Run the Flask_application. ```python python app.python From d0de552d3746848e80bca9ce7cb8e2fea58d7da6 Mon Sep 17 00:00:00 2001 From: Poojya-569 <146369791+Poojya-569@users.noreply.github.com> Date: Fri, 29 Sep 2023 12:26:51 +0530 Subject: [PATCH 2/6] Update README.md Added Poojya --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index dc2cef8..5e773c1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ -# OpenAI's Chatbot. +#Poojya OpenAI's Chatbot. -Poojya ## Features From 8136fae7b3ff2039e8f01b5cbf1e277db91c2e6e Mon Sep 17 00:00:00 2001 From: Poojya-569 <146369791+Poojya-569@users.noreply.github.com> Date: Fri, 29 Sep 2023 12:36:39 +0530 Subject: [PATCH 3/6] Update README.md Added Poojya --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e773c1..0037344 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ## Installation and Setup. - + 1. Clone this repository to your local machine. ```bash From dc44e11fc157c1c6beb3ee11e94aee13015e9731 Mon Sep 17 00:00:00 2001 From: Poojya-569 <146369791+Poojya-569@users.noreply.github.com> Date: Fri, 29 Sep 2023 12:39:23 +0530 Subject: [PATCH 4/6] Update contributors_list.md --- contributors_list.md | 1 + 1 file changed, 1 insertion(+) diff --git a/contributors_list.md b/contributors_list.md index 6e5a452..ab0c4a9 100644 --- a/contributors_list.md +++ b/contributors_list.md @@ -2,3 +2,4 @@ thanks for your contribution add your name and department as follows 1)Deepak Reddy -- IT,2ND YEAR +2)Poojya Kavuru -- CSE,1ST YEAR From eec8f35761ac6a8198d4f4f2fc729754e000ec80 Mon Sep 17 00:00:00 2001 From: Poojya-569 <146369791+Poojya-569@users.noreply.github.com> Date: Fri, 29 Sep 2023 14:08:43 +0530 Subject: [PATCH 5/6] Update contributors_list.md added my name, branch,year --- contributors_list.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributors_list.md b/contributors_list.md index ab0c4a9..f9ef7d5 100644 --- a/contributors_list.md +++ b/contributors_list.md @@ -2,4 +2,4 @@ thanks for your contribution add your name and department as follows 1)Deepak Reddy -- IT,2ND YEAR -2)Poojya Kavuru -- CSE,1ST YEAR +2)Poojya Kavuru --CSE,1ST YEAR From 526ae5130f0580d2fce0645c96cb846d584fa42f Mon Sep 17 00:00:00 2001 From: Poojya-569 <146369791+Poojya-569@users.noreply.github.com> Date: Fri, 29 Sep 2023 14:23:40 +0530 Subject: [PATCH 6/6] Update app.py updated import statements for fixing issue #3 --- app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index da41d49..8ae9730 100644 --- a/app.py +++ b/app.py @@ -1,6 +1,7 @@ # Assuming your chatbot code is in chatbot_api.py - +from flask import Flask, render_template, request, jsonify +import chatbot_api @app.route('/') @app.route('/index')