Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -50,8 +50,8 @@ def main():
|
|
50 |
|
51 |
# Display conversation history
|
52 |
for user_input, bot_response in st.session_state.history:
|
53 |
-
st.text_area("You", value=user_input, height=
|
54 |
-
st.text_area("Nietzsche", value=bot_response, height=
|
55 |
|
56 |
# User input
|
57 |
user_input = st.text_input("Your Question", placeholder="Ask Nietzsche...")
|
|
|
50 |
|
51 |
# Display conversation history
|
52 |
for user_input, bot_response in st.session_state.history:
|
53 |
+
st.text_area("You", value=user_input, height=68, disabled=True)
|
54 |
+
st.text_area("Nietzsche", value=bot_response, height=150, disabled=True)
|
55 |
|
56 |
# User input
|
57 |
user_input = st.text_input("Your Question", placeholder="Ask Nietzsche...")
|