louiecerv commited on
Commit
a2f515c
·
1 Parent(s): 23eb09c

Updated some libraries

Browse files
Files changed (2) hide show
  1. app.py +6 -1
  2. requirements.txt +2 -0
app.py CHANGED
@@ -14,7 +14,12 @@ def get_ai_response(prompt):
14
  return response
15
 
16
  # Streamlit App
17
- st.title("AI Quiz Question Generator")
 
 
 
 
 
18
 
19
  # Step 1: Prompt user for a topic
20
  topic = st.text_input("Enter a topic:", "")
 
14
  return response
15
 
16
  # Streamlit App
17
+ st.title("Nemotron Quizmaster")
18
+
19
+ with st.expander("About"):
20
+ st.write(
21
+ "This app generates quiz questions based on a given topic and difficulty level."
22
+ )
23
 
24
  # Step 1: Prompt user for a topic
25
  topic = st.text_input("Enter a topic:", "")
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ streamlit
2
+ transformers