Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ def add_logo(logo_path, width, height):
|
|
8 |
return modified_logo
|
9 |
|
10 |
# Example usage
|
11 |
-
my_logo = add_logo(logo_path="endesa.jpeg", width=
|
12 |
st.image(my_logo, caption="Logo endesa", use_column_width=True)
|
13 |
|
14 |
# Rest of your Streamlit app
|
@@ -18,7 +18,7 @@ st.write("# Home")
|
|
18 |
st.title("plAIn")
|
19 |
# Add more components here
|
20 |
# Create a text input widget
|
21 |
-
user_input = st.text_input('
|
22 |
|
23 |
# Define a function to process the input
|
24 |
def process_text(input_text):
|
@@ -29,4 +29,4 @@ def process_text(input_text):
|
|
29 |
processed_output = process_text(user_input)
|
30 |
|
31 |
# Display the processed output
|
32 |
-
st.write('
|
|
|
8 |
return modified_logo
|
9 |
|
10 |
# Example usage
|
11 |
+
my_logo = add_logo(logo_path="endesa.jpeg", width=25, height=30)
|
12 |
st.image(my_logo, caption="Logo endesa", use_column_width=True)
|
13 |
|
14 |
# Rest of your Streamlit app
|
|
|
18 |
st.title("plAIn")
|
19 |
# Add more components here
|
20 |
# Create a text input widget
|
21 |
+
user_input = st.text_input('Pega tu texto:', 'Hello, Streamlit!')
|
22 |
|
23 |
# Define a function to process the input
|
24 |
def process_text(input_text):
|
|
|
29 |
processed_output = process_text(user_input)
|
30 |
|
31 |
# Display the processed output
|
32 |
+
st.write('Texto procesado:', processed_output)
|