eduardo-meik commited on
Commit
413623a
1 Parent(s): 7823eb7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -10,17 +10,15 @@ st.title("Plataforma de Diálogos Participativos")
10
  col1, col2 = st.beta_columns([1,3])
11
 
12
  with col1:
13
- # This column will remain empty to act as a spacer
14
-
15
- st.write("")
16
-
17
- with col2:
18
  # Text area for input
19
  text = st.text_area("Añade el texto a evaluar")
20
 
21
  # Buttons for different analysis (for this example, I'm assuming just sentiment analysis, you can add more)
22
  run_analysis = st.button("Evaluar Sentimiento")
23
 
 
 
 
24
  # Create a container for output to occupy the lower half of the layout
25
  output_container = st.beta_container()
26
 
 
10
  col1, col2 = st.beta_columns([1,3])
11
 
12
  with col1:
 
 
 
 
 
13
  # Text area for input
14
  text = st.text_area("Añade el texto a evaluar")
15
 
16
  # Buttons for different analysis (for this example, I'm assuming just sentiment analysis, you can add more)
17
  run_analysis = st.button("Evaluar Sentimiento")
18
 
19
+ with col2:
20
+ st.write("Resultados")
21
+
22
  # Create a container for output to occupy the lower half of the layout
23
  output_container = st.beta_container()
24