keisuke-tada commited on
Commit
848a8a5
·
1 Parent(s): be86399

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -12
app.py CHANGED
@@ -8,7 +8,7 @@ temperature = 0
8
 
9
  prompt = st.text_area("Prompt")
10
 
11
- if st.button("Submit", type="primary"):
12
  st.markdown("----")
13
  output_box = st.empty()
14
 
@@ -32,16 +32,18 @@ if st.button("Submit", type="primary"):
32
  output = "".join(content).strip()
33
  st.markdown(
34
  f"""
35
- ````
36
- ### Prompt
37
- ```
38
- {prompt}
39
- ```
40
-
41
- ### Output
42
- ```
43
- {output}
44
- ```
45
- ````
 
 
46
  """
47
  )
 
8
 
9
  prompt = st.text_area("Prompt")
10
 
11
+ if prompt:
12
  st.markdown("----")
13
  output_box = st.empty()
14
 
 
32
  output = "".join(content).strip()
33
  st.markdown(
34
  f"""
35
+ ````
36
+ ### Prompt
37
+
38
+ ```
39
+ {prompt}
40
+ ```
41
+
42
+ ### Output
43
+
44
+ ```
45
+ {output}
46
+ ```
47
+ ````
48
  """
49
  )