wendru18 commited on
Commit
f44d114
·
1 Parent(s): ac4f041

clarification and added new idea

Browse files
Files changed (2) hide show
  1. README.md +2 -1
  2. app.py +1 -1
README.md CHANGED
@@ -15,7 +15,8 @@ Ask YouTube GPT allows you to ask questions about a set of YouTube Videos using
15
 
16
  ## Ideas / Future Improvements
17
 
18
- - [ ] Add "Suggest a question" feature (maybe through clustering?)
 
19
  - [ ] Add explainable segment retrieval (i.e. why did that specific segment get chosen to answer the question?)
20
  - [ ] Add OpenAI embeddings
21
  - [ ] Improve the retrieval process allowing for the retrieval to return at least one segment from each video (This would in turn enable comparision of videos, i.e. which video explains topic X in more depth?)
 
15
 
16
  ## Ideas / Future Improvements
17
 
18
+ - [ ] Omit the need for a set of videos, and instead use a search query to find videos on the fly.
19
+ - [ ] Add "Suggest a question" feature given the videos (maybe through clustering?)
20
  - [ ] Add explainable segment retrieval (i.e. why did that specific segment get chosen to answer the question?)
21
  - [ ] Add OpenAI embeddings
22
  - [ ] Improve the retrieval process allowing for the retrieval to return at least one segment from each video (This would in turn enable comparision of videos, i.e. which video explains topic X in more depth?)
app.py CHANGED
@@ -243,7 +243,7 @@ title = "Ask YouTube GPT 📺"
243
  with gr.Blocks() as demo:
244
 
245
  gr.Markdown(f'<center><h1>{title}</h1></center>')
246
- gr.Markdown(f'Ask YouTube GPT allows you to ask questions about a set of YouTube Videos using Topic Segmentation, Universal Sentence Encoding, and Open AI. The returned response cites the video title, author and timestamp in square brackets where the information is located, adding credibility to the responses and helping you locate incorrect information. If you need one, get your Open AI API key <a href="https://platform.openai.com/account/api-keys">here</a>.</p>')
247
 
248
  with gr.Row():
249
 
 
243
  with gr.Blocks() as demo:
244
 
245
  gr.Markdown(f'<center><h1>{title}</h1></center>')
246
+ gr.Markdown(f'Ask YouTube GPT allows you to ask questions about a set of YouTube Videos using Topic Segmentation, Universal Sentence Encoding, and Open AI. It does not use the video/s itself, but rather the transcript/s of such video/s. The returned response cites the video title, author and timestamp in square brackets where the information is located, adding credibility to the responses and helping you locate incorrect information. If you need one, get your Open AI API key <a href="https://platform.openai.com/account/api-keys">here</a>.</p>')
247
 
248
  with gr.Row():
249