Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
app.py
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Python 3.13.2 (v3.13.2:4f8bb3947cf, Feb 4 2025, 11:51:10) [Clang 15.0.0 (clang-1500.3.9.4)] on darwin
|
2 |
+
Type "help", "copyright", "credits" or "license()" for more information.
|
3 |
+
>>> import streamlit as st
|
4 |
+
...
|
5 |
+
... st.set_page_config(page_title="Was The Prompt?", page_icon="馃寑", layout="centered")
|
6 |
+
...
|
7 |
+
... st.title("馃寣 Was The Prompt?")
|
8 |
+
...
|
9 |
+
... st.markdown("### Ingresa un texto y observa c贸mo se transforma en su eco primigenio.")
|
10 |
+
...
|
11 |
+
... prompt = st.text_input("Tu prompt aqu铆:")
|
12 |
+
...
|
13 |
+
... if st.button("Generar 馃敭"):
|
14 |
+
... response = f'"{prompt}" fue el prompt. Y entonces, las palabras se formaron en el eco del origen.'
|