EnzoBustos commited on
Commit
26ce529
·
1 Parent(s): 4c2fe5c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -5,6 +5,7 @@ import transformers
5
  from transformers import pipeline
6
  from transformers import AutoTokenizer
7
  import nltk
 
8
 
9
  #Download youtube video
10
  @st.cache_data
@@ -64,6 +65,14 @@ def english_qa_pipeline(questions, context):
64
  '''
65
 
66
  def main():
 
 
 
 
 
 
 
 
67
 
68
  with st.sidebar():
69
  st.title(":blue[Turing]Videos")
 
5
  from transformers import pipeline
6
  from transformers import AutoTokenizer
7
  import nltk
8
+ from PIL import Image
9
 
10
  #Download youtube video
11
  @st.cache_data
 
65
  '''
66
 
67
  def main():
68
+ icon = Image.open("Traçado laranja #f1863d.png")
69
+
70
+ st.set_page_config(
71
+ page_title = "Turing Videos",
72
+ page_icon = icon,
73
+ layout = "wide",
74
+ initial_sidebar_state = "auto",
75
+ )
76
 
77
  with st.sidebar():
78
  st.title(":blue[Turing]Videos")