Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -44,9 +44,6 @@ if submitted:
|
|
44 |
# Update session state with the full response
|
45 |
st.session_state["full_text"] = full_text
|
46 |
|
47 |
-
# Display the full response
|
48 |
-
st.info(full_text)
|
49 |
-
|
50 |
# Display the full response
|
51 |
-
|
52 |
-
|
|
|
44 |
# Update session state with the full response
|
45 |
st.session_state["full_text"] = full_text
|
46 |
|
|
|
|
|
|
|
47 |
# Display the full response
|
48 |
+
if st.session_state["full_text"]:
|
49 |
+
st.info(st.session_state["full_text"])
|