anakin87 commited on
Commit
2ebb416
β€’
1 Parent(s): cfd3950

add links to video explanation

Browse files
Files changed (2) hide show
  1. README.md +2 -0
  2. app.py +1 -1
README.md CHANGED
@@ -22,6 +22,8 @@ Built using: [πŸ—οΈ Haystack](https://haystack.deepset.ai/) β€’ πŸ¦™ Llama 3 8
22
 
23
  ## How does it work?
24
 
 
 
25
  ![AutoQuizzer](autoquizzer.png)
26
 
27
  - **Quiz generation Pipeline**: downloads HTML content from the URL, extracts the text and passes it to Llama 3 to generate a quiz in JSON format.
 
22
 
23
  ## How does it work?
24
 
25
+ 🎬 [**Project walkthrough video**](https://www.youtube.com/watch?v=C1oJ1ArYYZA)
26
+
27
  ![AutoQuizzer](autoquizzer.png)
28
 
29
  - **Quiz generation Pipeline**: downloads HTML content from the URL, extracts the text and passes it to Llama 3 to generate a quiz in JSON format.
app.py CHANGED
@@ -172,7 +172,7 @@ HEADER = """
172
  <div align="center">
173
  <p style="font-size: 44px;">πŸ§‘β€πŸ« AutoQuizzer</p>
174
  <p style="font-size: 25px;">AutoQuizzer generates a quiz from a URL. You can play the quiz, or let the LLM play it.</p>
175
- <p style="font-size: 20px;"><b>Built using: <a href="https://haystack.deepset.ai/">πŸ—οΈ Haystack</a> β€’ πŸ¦™ Llama 3 8B Instruct β€’ ⚑ Groq</b></p>
176
  </div>
177
  """
178
 
 
172
  <div align="center">
173
  <p style="font-size: 44px;">πŸ§‘β€πŸ« AutoQuizzer</p>
174
  <p style="font-size: 25px;">AutoQuizzer generates a quiz from a URL. You can play the quiz, or let the LLM play it.</p>
175
+ <p style="font-size: 20px;"><b><a href="https://www.youtube.com/watch?v=C1oJ1ArYYZA)">🎬 Project walkthrough video</a> - Built using: <a href="https://haystack.deepset.ai/">πŸ—οΈ Haystack</a> β€’ πŸ¦™ Llama 3 8B Instruct β€’ ⚑ Groq</b></p>
176
  </div>
177
  """
178