Update app.py
Browse files
app.py
CHANGED
@@ -47,15 +47,15 @@ st.subheader("결과값: ")
|
|
47 |
if example_1:
|
48 |
with st.spinner('In progress.......'):
|
49 |
output_text = gpt(example_1_str)
|
50 |
-
st.markdown("
|
51 |
if example_2:
|
52 |
with st.spinner('In progress.......'):
|
53 |
output_text = gpt(example_2_str)
|
54 |
-
st.markdown("
|
55 |
if button:
|
56 |
with st.spinner('In progress.......'):
|
57 |
if textbox:
|
58 |
output_text = gpt(textbox)
|
59 |
else:
|
60 |
output_text = " "
|
61 |
-
st.markdown(output_text)
|
|
|
47 |
if example_1:
|
48 |
with st.spinner('In progress.......'):
|
49 |
output_text = gpt(example_1_str)
|
50 |
+
st.markdown("\n"+output_text)
|
51 |
if example_2:
|
52 |
with st.spinner('In progress.......'):
|
53 |
output_text = gpt(example_2_str)
|
54 |
+
st.markdown("\n"+output_text)
|
55 |
if button:
|
56 |
with st.spinner('In progress.......'):
|
57 |
if textbox:
|
58 |
output_text = gpt(textbox)
|
59 |
else:
|
60 |
output_text = " "
|
61 |
+
st.markdown("\n" + output_text)
|