Update app.py
Browse files
app.py
CHANGED
|
@@ -16,7 +16,7 @@ def main():
|
|
| 16 |
</div>
|
| 17 |
""", unsafe_allow_html=True)
|
| 18 |
|
| 19 |
-
left, right = st.columns([1,
|
| 20 |
|
| 21 |
with left:
|
| 22 |
st.markdown(
|
|
@@ -54,7 +54,7 @@ def main():
|
|
| 54 |
for char in output:
|
| 55 |
typed_text += char
|
| 56 |
placeholder.code(typed_text, language="html")
|
| 57 |
-
time.sleep(0.
|
| 58 |
else:
|
| 59 |
st.error("No output generated. Please try again.")
|
| 60 |
except Exception as e:
|
|
|
|
| 16 |
</div>
|
| 17 |
""", unsafe_allow_html=True)
|
| 18 |
|
| 19 |
+
left, right = st.columns([1, 5])
|
| 20 |
|
| 21 |
with left:
|
| 22 |
st.markdown(
|
|
|
|
| 54 |
for char in output:
|
| 55 |
typed_text += char
|
| 56 |
placeholder.code(typed_text, language="html")
|
| 57 |
+
time.sleep(0.005)
|
| 58 |
else:
|
| 59 |
st.error("No output generated. Please try again.")
|
| 60 |
except Exception as e:
|