Update app.py
Browse files
app.py
CHANGED
@@ -34,7 +34,8 @@ if st.button("Submit", type="primary"):
|
|
34 |
# then strip out any empty strings
|
35 |
report.append(resp.choices[0].text)
|
36 |
result = "".join(report).strip()
|
37 |
-
#result = result.replace("\n", "")
|
|
|
38 |
res_box.markdown({result})
|
39 |
|
40 |
st.markdown("----")
|
|
|
34 |
# then strip out any empty strings
|
35 |
report.append(resp.choices[0].text)
|
36 |
result = "".join(report).strip()
|
37 |
+
#result = result.replace("\n", "")
|
38 |
+
res_box = None
|
39 |
res_box.markdown({result})
|
40 |
|
41 |
st.markdown("----")
|