Hellisotherpeople commited on
Commit
56ecfa3
1 Parent(s): 8ec9992

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -90,7 +90,7 @@ embedder = SentenceTransformer(model_name)
90
 
91
  granularity = st.radio("What level of granularity do you want to summarize at?", ('Sentence', 'Word', 'Paragraph'))
92
 
93
- y = st.text_area('enter a query', value = "I love choclate")
94
  x = st.text_area('Enter a document', value = choclate_example)
95
  percentage = st.number_input("Enter the percentage of the text you want highlighted", max_value = 0.99, min_value = 0.01, value = 0.3)
96
 
90
 
91
  granularity = st.radio("What level of granularity do you want to summarize at?", ('Sentence', 'Word', 'Paragraph'))
92
 
93
+ y = st.text_area('enter a query', value = "I love chocolate")
94
  x = st.text_area('Enter a document', value = choclate_example)
95
  percentage = st.number_input("Enter the percentage of the text you want highlighted", max_value = 0.99, min_value = 0.01, value = 0.3)
96