Samarth991 commited on
Commit
35a58c0
·
1 Parent(s): b54fbdc
Files changed (1) hide show
  1. app.py +8 -5
app.py CHANGED
@@ -117,13 +117,16 @@ css="""
117
  #col-container {max-width: 700px; margin-left: auto; margin-right: auto;}
118
  """
119
 
120
- title ="""<div
121
- style="text-align: center;max-width: 700px;">
122
- <h1>Chat with You Tube videos</h1>
123
- </div>
 
 
 
124
  """
125
 
126
- with gr.Blocks() as demo:
127
  with gr.Row():
128
  with gr.Column(elem_id="col-container"):
129
  gr.HTML(title)
 
117
  #col-container {max-width: 700px; margin-left: auto; margin-right: auto;}
118
  """
119
 
120
+ title = """
121
+ <div style="text-align: center;max-width: 700px;">
122
+ <h1>Chat with Youtube Videos </h1>
123
+ <p style="text-align: center;">Upload a youtube link of any lecture or video and you are able to ask QA as chatbot with the tool
124
+ It gives you option to use HuggingFace/OpenAI as LLM's, make sure to add your key.
125
+ </p>
126
+ </div>
127
  """
128
 
129
+ with gr.Blocks(css=css) as demo:
130
  with gr.Row():
131
  with gr.Column(elem_id="col-container"):
132
  gr.HTML(title)