diff --git a/cdp-langchain/examples/chatbot/chatbot.py b/cdp-langchain/examples/chatbot/chatbot.py index cafca2511..720c96b05 100644 --- a/cdp-langchain/examples/chatbot/chatbot.py +++ b/cdp-langchain/examples/chatbot/chatbot.py @@ -103,7 +103,7 @@ def run_chat_mode(agent_executor, config): print("Starting chat mode... Type 'exit' to end.") while True: try: - user_input = input("\nUser: ") + user_input = input("\nPrompt: ") if user_input.lower() == "exit": break diff --git a/twitter-langchain/examples/chatbot/chatbot.py b/twitter-langchain/examples/chatbot/chatbot.py index c2c4fd497..804291d29 100644 --- a/twitter-langchain/examples/chatbot/chatbot.py +++ b/twitter-langchain/examples/chatbot/chatbot.py @@ -78,7 +78,7 @@ def run_chat_mode(agent_executor, config): print("Starting chat mode... Type 'exit' to end.") while True: try: - user_input = input("\nUser: ") + user_input = input("\nPrompt: ") if user_input.lower() == "exit": break