Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -126,7 +126,7 @@ with col1:
|
|
| 126 |
# Display the result area with a border
|
| 127 |
col2.markdown("""
|
| 128 |
<div style="border: 2px solid #FFCC00; padding: 10px; border-radius: 8px; background-color: #f9f9f9;">
|
| 129 |
-
<h3>
|
| 130 |
<p>{}</p>
|
| 131 |
</div>
|
| 132 |
""".format(generated_text), unsafe_allow_html=True)
|
|
@@ -139,7 +139,7 @@ if submit:
|
|
| 139 |
generated_text = get_gemini_response(target_audience, product, text_type, length, mood, emotionality)
|
| 140 |
col2.markdown("""
|
| 141 |
<div style="border: 2px solid #FFCC00; padding: 10px; border-radius: 8px; background-color: #f9f9f9;">
|
| 142 |
-
<h3>
|
| 143 |
<p>{}</p>
|
| 144 |
</div>
|
| 145 |
""".format(generated_text), unsafe_allow_html=True) # Update with generated text
|
|
|
|
| 126 |
# Display the result area with a border
|
| 127 |
col2.markdown("""
|
| 128 |
<div style="border: 2px solid #FFCC00; padding: 10px; border-radius: 8px; background-color: #f9f9f9;">
|
| 129 |
+
<h3>Aquí esta tu párrafo de apertura:</h3>
|
| 130 |
<p>{}</p>
|
| 131 |
</div>
|
| 132 |
""".format(generated_text), unsafe_allow_html=True)
|
|
|
|
| 139 |
generated_text = get_gemini_response(target_audience, product, text_type, length, mood, emotionality)
|
| 140 |
col2.markdown("""
|
| 141 |
<div style="border: 2px solid #FFCC00; padding: 10px; border-radius: 8px; background-color: #f9f9f9;">
|
| 142 |
+
<h3>Aquí esta tu párrafo de apertura 2:</h3>
|
| 143 |
<p>{}</p>
|
| 144 |
</div>
|
| 145 |
""".format(generated_text), unsafe_allow_html=True) # Update with generated text
|