Spaces:
Runtime error
Runtime error
Updated some libraries
Browse files- app.py +6 -1
- 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("
|
|
|
|
|
|
|
|
|
|
|
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
|