hertogateis commited on
Commit
9093335
·
verified ·
1 Parent(s): a81bc79

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -2
app.py CHANGED
@@ -50,8 +50,8 @@ def chat_with_nietzsche(user_input):
50
 
51
  # Streamlit app
52
  def main():
53
- st.title("Nietzsche Chatbot")
54
- st.markdown("Ask Friedrich Nietzsche anything, and he will respond from his philosophical perspective.")
55
 
56
  # Initialize session state for conversation history
57
  if "history" not in st.session_state:
@@ -62,6 +62,23 @@ def main():
62
  st.text_area("You", value=user_input, height=68, disabled=True, key=f"user_input_{i}")
63
  st.text_area("Nietzsche", value=bot_response, height=150, disabled=True, key=f"bot_response_{i}")
64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  # User input
66
  user_input = st.text_input("Your Question", placeholder="Ask Nietzsche...", key="user_input")
67
 
 
50
 
51
  # Streamlit app
52
  def main():
53
+ st.title("Nietzsche Chatbot by HERTOG")
54
+ st.markdown("Ask Friedrich Nietzsche anything, and he will respond from his philosophical perspective. Tanya Nietzsche yang ateis")
55
 
56
  # Initialize session state for conversation history
57
  if "history" not in st.session_state:
 
62
  st.text_area("You", value=user_input, height=68, disabled=True, key=f"user_input_{i}")
63
  st.text_area("Nietzsche", value=bot_response, height=150, disabled=True, key=f"bot_response_{i}")
64
 
65
+ st.markdown(
66
+ f"""
67
+ <div style="
68
+ font-size: 16px;
69
+ font-family: Arial, sans-serif;
70
+ color: #FFFFFF; /* White font color */
71
+ background-color: #000000; /* Black background */
72
+ padding: 10px;
73
+ border-radius: 5px;
74
+ margin: 5px 0;
75
+ ">
76
+ <strong>Nietzsche:</strong> {bot_response}
77
+ </div>
78
+ """,
79
+ unsafe_allow_html=True
80
+ )
81
+
82
  # User input
83
  user_input = st.text_input("Your Question", placeholder="Ask Nietzsche...", key="user_input")
84