Update app.py
Browse files
app.py
CHANGED
@@ -202,6 +202,7 @@ def get_student_profile():
|
|
202 |
|
203 |
import re
|
204 |
def calculate_score_and_grade(llm_response):
|
|
|
205 |
# Extract all the marks using a regular expression
|
206 |
marks = re.findall(r'(\d+)/(\d+)', llm_response)
|
207 |
|
|
|
202 |
|
203 |
import re
|
204 |
def calculate_score_and_grade(llm_response):
|
205 |
+
print(llm_response)
|
206 |
# Extract all the marks using a regular expression
|
207 |
marks = re.findall(r'(\d+)/(\d+)', llm_response)
|
208 |
|