diff --git a/app.py b/app.py index 3c55b31..99b4b7d 100644 --- a/app.py +++ b/app.py @@ -230,7 +230,7 @@ def generate_response(prompt, history): # --- Login Page --- st.title("Welcome to CHAT MESH") # Changed chatbot name here st.write("Please log in to continue.") - username = st.text_input("Username", value="mg13") # Default username + username = st.text_input("Username", value="chatteam") # Default username password = st.text_input("Password", type="password", value="manuel123") # Default password if st.button("Log In"): # Authentication logic (using the default credentials) @@ -285,4 +285,4 @@ def generate_response(prompt, history): # Add assistant response to chat history st.session_state.messages.append({"role": "assistant", "content": full_response}) else: - st.warning("The Groq model is not available.") \ No newline at end of file + st.warning("The Groq model is not available.")