File size: 9,733 Bytes
1da5a00 f103b06 1da5a00 fc0dd83 1da5a00 2589d3c 1da5a00 60efd81 1da5a00 e671c5f 1da5a00 f103b06 1da5a00 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 |
import json as js
import os
import streamlit as st
from mistralai.client import MistralClient
from mistralai.models.chat_completion import ChatMessage
import json
import base64
import io
from gtts import gTTS
prompt = """
Generate a JSON object for each multiple-choice question with the following format, focusing on basic phonics. Create 10 questions:
- "question": The text of the question.
- "incorrect_answers": A list of possible answer choices which are incorrect.
- "correct_answer": The correct answer.
Ensure the questions cover fundamental phonics concepts, such as identifying beginning and ending sounds, recognizing short and long vowel sounds, and matching letters to their sounds.
Example of output:
[
{
"question": "What is the beginning sound of the word 'cat'?",
"incorrect_answers": ["b", "d", "f"],
"correct_answer": "c"
},
{
"question": "Which word has the same ending sound as 'dog'?",
"incorrect_answers": ["cat", "fish", "book"],
"correct_answer": "frog"
},
{
"question": "Which word rhymes with 'bat'?",
"incorrect_answers": ["mat", "sat", "hat"],
"correct_answer": "rat"
}
]
Please generate similar JSON objects for new questions on basic phonics.
"""
QS=[
{
"question": "What is the beginning sound of the word 'apple'?",
"incorrect_answers": ["m", "p", "r"],
"correct_answer": "a"
},
{
"question": "Which word has the same ending sound as 'sun'?",
"incorrect_answers": ["moon", "run", "fun"],
"correct_answer": "bun"
},
{
"question": "Which word rhymes with 'ship'?",
"incorrect_answers": ["dip", "rip", "sip"],
"correct_answer": "tip"
},
{
"question": "What is the long vowel sound in the word 'rain'?",
"incorrect_answers": ["a", "e", "i"],
"correct_answer": "ai"
},
{
"question": "Which word has the same beginning sound as 'elephant'?",
"incorrect_answers": ["igloo", "apple", "umbrella"],
"correct_answer": "egg"
},
{
"question": "Which word has the same ending sound as 'kite'?",
"incorrect_answers": ["bike", "site", "dike"],
"correct_answer": "light"
},
{
"question": "What is the short vowel sound in the word 'dog'?",
"incorrect_answers": ["a", "e", "i"],
"correct_answer": "o"
},
{
"question": "Which word has the same beginning sound as 'under'?",
"incorrect_answers": ["apple", "egg", "umbrella"],
"correct_answer": "up"
},
{
"question": "Which word has the same ending sound as 'bat'?",
"incorrect_answers": ["cat", "rat", "hat"],
"correct_answer": "mat"
},
{
"question": "What is the long vowel sound in the word 'boot'?",
"incorrect_answers": ["a", "e", "i"],
"correct_answer": "oo"
}
]
import streamlit as st
def add_logo():
st.markdown(
"""
<style>
[data-testid="stSidebarNav"] {
/*background-image: url(http://placekitten.com/200/200);*/
background-repeat: no-repeat;
#padding-top: 120px;
background-position: 20px 20px;
}
[data-testid="stSidebarNav"]::before {
content: "MO3ALIMI sidebar";
margin-left: 20px;
margin-top: 20px;
font-size: 29px;
position: relative;
top: 0px;
}
</style>
""",
unsafe_allow_html=True,
)
add_logo()
@st.cache_data
def tts_predict(text="hello"):
tts = gTTS(text=text, lang='en')
with io.BytesIO() as audio_file:
tts.write_to_fp(audio_file)
audio_file.seek(0)
audio_bytes = audio_file.read()
return audio_bytes
@st.cache_data
def get_mistral_response_injson():
global prompt
api_key = "mRLAIaEj5reOROa19MBF3dj21DaSEELl"
model = "mistral-small-latest"
client = MistralClient(api_key=api_key)
messages = [
ChatMessage(role="user", content=prompt)
]
chat_response = client.chat(
model=model,
response_format={"type": "json_object"},
messages=messages,
)
output = chat_response.choices[0].message.content
return output
@st.cache_data(ttl= 75, max_entries=1)
def get_question():
question = get_mistral_response_injson()
questions = json.loads(question)
return questions
def initialize_session_state():
if 'current_question' not in st.session_state:
st.session_state.current_question = 0
# st.snow()
if 'player_score' not in st.session_state:
st.session_state.player_score = 0
def update_score(player_choice, correct_answer):
if str(player_choice) == str(correct_answer):
st.success("It was a correct answer! Great Job! πβ")
st.session_state.player_score += 1
st.balloons()
else:
st.error("It was an incorrect answer! π")
if "page" not in st.session_state:
st.session_state.page = 0
if "submit_key" in st.session_state and st.session_state.submit_key == True:
st.session_state.running = True
else:
st.session_state.running = False
if "running" not in st.session_state:
st.session_state.running = False
def nextpage(): st.session_state.page += 1
def restart(): st.session_state.page = 0
# set_bg_hack_url()
st.markdown("""<style>description {color: Green;}
.st-emotion-cache-1y4p8pa {
/* padding: none; */
}
</style>""",unsafe_allow_html = True)
file_ = open("logo.png", "rb")
contents = file_.read()
data_url = base64.b64encode(contents).decode("utf-8")
st.markdown(f"""
<div style="display: flex; align-items: center;">
<img src="data:image/gif;base64,{data_url}" alt="Company Logo" style="height: 100px; width: auto; margin-right: 20px;">
<h1 style="margin: 0;">MO3ALIMI</h1>
</div>
""", unsafe_allow_html=True)
st.markdown("""
<style>
audio {
width: 300px;
height: 54px;
display: none;
}
</style>""", unsafe_allow_html=True)
initialize_session_state()
def calculate_score(player_choice):
correct_answer = quiz_questions[st.session_state.current_question]["answer"]
# st.write("inside calculate_score" + str(correct_answer))
update_score(player_choice, correct_answer)
st.session_state.current_question += 1
#if 'category'not in st.session_state:
# st.session_state.category =None
#if st.sidebar.button(' '*30+'Phonics'+' '*30, ):
# st.session_state.category = 'phonics'
#if st.sidebar.button(' '*27+'Numeracy'+' '*28, ):
# st.session_state.category = 'numeracy'
#if st.sidebar.button(' '*31+'Writing'+' '*31, ):
# st.session_state.category = 'Writing'
#if st.sidebar.button(' '*30+'Reading'+' '*30, ):
# st.session_state.category = 'Reading'
#category = st.session_state.category
category = 'quizes'
#category = st.sidebar.selectbox("Category: ", ['Phonics','Numeracy','Writing','Reading'], index= None, placeholder= "Select one: ", disabled=(st.session_state.running))
# st.session_state.disable_opt = True
# category = st.sidebar.selectbox("Category: ", list(categories_option.keys()), index= None, placeholder= "Select one: ", disabled=(st.session_state.running))
if category is None:
st.warning('Please select a subject to start learning', icon="β οΈ")
else:
QuestionList = QS
# st.write(QuestionList)
len_response = len(QuestionList)
if len_response == 0:
st.error("Got no question! ππ")
st.stop()
quiz_questions = []
for item in range(len_response):
temp_dict = dict()
temp_dict['text'] = QuestionList[item].get("question")
temp_dict['options'] = tuple(QuestionList[item].get("incorrect_answers") + [QuestionList[item].get("correct_answer")])
temp_dict['answer'] = QuestionList[item].get("correct_answer")
quiz_questions.append(temp_dict)
placeholder = st.empty()
ind = st.session_state.current_question
if ind > len(quiz_questions):
st.stop()
else:
current_question = quiz_questions[ind]
st.subheader(quiz_questions[ind]["text"])
audio_bytes = tts_predict(quiz_questions[ind]["text"])
st.audio(audio_bytes, format='audio/wav', autoplay=True)
def play_audio(choice):
audio_bytes = tts_predict(choice)
st.audio(audio_bytes, format='audio/wav', autoplay=True)
player_choice = st.radio("Select your answer:",
options=current_question["options"],
key=f"question_{ind}",
index=None,
disabled=(st.session_state.running))
try:
play_audio(player_choice)
except:
pass
submitted = st.button("Submit", key="submit_key", disabled=(st.session_state.running))
if submitted:
calculate_score(player_choice)
st.markdown("Correct Answer: "+ current_question["answer"])
# st.empty()
if st.button("Next",on_click=nextpage,disabled=(st.session_state.page >= 9)):
if st.session_state.current_question < len(quiz_questions):
st.rerun()
if st.session_state.current_question >= len(quiz_questions):
# st.session_state.clear
st.empty()
st.success("Quiz Finished!")
st.subheader(f"_Your_ _Score_: :blue[{st.session_state.player_score}] :sunglasses:")
st.snow()
st.markdown("---") |