From a6aee68061a3ee5cf564d1b0bce20b8d167a8b57 Mon Sep 17 00:00:00 2001 From: BryceFlick Date: Mon, 15 Sep 2025 17:42:12 -0500 Subject: [PATCH 1/4] Fork this word file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 12e5149..74daa6f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The project is meant to be a starter for your chatbot project. To use this project do the following: -1. Fork this project +1. Fork this project 2. From the code section of the repository click the green code button, select Codespaces tab in the popup and click the + button to create a codespace (you will be able to use this codespace in the browser or in a local installation of vs code) for more info [go here](https://docs.github.com/en/codespaces/developing-in-a-codespace/opening-an-existing-codespace) From fffaace26fa56e9ac278730c0dc5076a1b39a4b2 Mon Sep 17 00:00:00 2001 From: BryceFlick Date: Mon, 15 Sep 2025 17:50:14 -0500 Subject: [PATCH 2/4] Added a new intro --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 74daa6f..f178733 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,16 @@ -# C2C Elite 101 Python Chatbot Starter +# Introduction + + +This is a repository created by Bryce Flick + + +## Usage + + +Run this command to execute the application: + + +`python filename.py This chatbot was created by Jorge Luna - update From 2df42e14e0f14a02769e5671dd9b2f6492bb1235 Mon Sep 17 00:00:00 2001 From: BryceFlick Date: Wed, 17 Sep 2025 22:15:34 +0000 Subject: [PATCH 3/4] changed greet_user() --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 723e869..1e92459 100644 --- a/main.py +++ b/main.py @@ -17,7 +17,7 @@ def get_user_name(): return input("Please enter your name: ") def greet_user(name): - print(f"Hello, {name}!") + print(f"Hello, {name}! I am bryce the developer.") def main(): user_name = get_user_name() From 33d1a16d2fb150b0a8ea02ff62cd8af3ea67aa21 Mon Sep 17 00:00:00 2001 From: Aniya-star14 Date: Wed, 17 Sep 2025 17:41:57 -0500 Subject: [PATCH 4/4] Update main.py --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 1e92459..fc25af2 100644 --- a/main.py +++ b/main.py @@ -17,11 +17,11 @@ def get_user_name(): return input("Please enter your name: ") def greet_user(name): - print(f"Hello, {name}! I am bryce the developer.") + print(f"Hello, {name}! I am Aniya the Reviewer.") def main(): user_name = get_user_name() greet_user(user_name) if __name__ == "__main__": - main() + main()