Illia56 commited on
Commit
1652fd9
1 Parent(s): c9be926

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -23,8 +23,6 @@ Welcome to the **YouTube Video Chatbot** powered by the state-of-the-art Llama-2
23
 
24
  - **Transcribe & Understand**: Provide any YouTube video URL, and our system will transcribe it. Our advanced NLP model will then understand the content, ready to answer your questions.
25
  - **Ask Anything**: Based on the video's content, ask any question, and get instant, context-aware answers.
26
- - **Deep Dive**: Our model doesn't just provide generic answers. It understands the context, nuances, and details from the video.
27
- - **Safe & Private**: We value your privacy. The videos you provide are only used for transcription and are not stored or used for any other purpose.
28
 
29
  To get started, simply paste a YouTube video URL in the sidebar and start chatting with the model about the video's content. Enjoy the experience!
30
  """
@@ -92,8 +90,7 @@ def initialize_session_state():
92
  def sidebar():
93
  with st.sidebar:
94
  st.markdown(
95
- "## How to use\n"
96
- "1. Enter the YouTube Video URL below🔗\n"
97
  )
98
  st.session_state.youtube_url = st.text_input("YouTube Video URL:")
99
 
 
23
 
24
  - **Transcribe & Understand**: Provide any YouTube video URL, and our system will transcribe it. Our advanced NLP model will then understand the content, ready to answer your questions.
25
  - **Ask Anything**: Based on the video's content, ask any question, and get instant, context-aware answers.
 
 
26
 
27
  To get started, simply paste a YouTube video URL in the sidebar and start chatting with the model about the video's content. Enjoy the experience!
28
  """
 
90
  def sidebar():
91
  with st.sidebar:
92
  st.markdown(
93
+ "Enter the YouTube Video URL below🔗\n"
 
94
  )
95
  st.session_state.youtube_url = st.text_input("YouTube Video URL:")
96