Spaces:
Sleeping
Sleeping
Commit
·
848a8a5
1
Parent(s):
be86399
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ temperature = 0
|
|
8 |
|
9 |
prompt = st.text_area("Prompt")
|
10 |
|
11 |
-
if
|
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 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
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 |
)
|