Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
|
@@ -256,17 +256,17 @@ async def analyze_scores(input_data: ScoreInput):
|
|
| 256 |
|
| 257 |
|
| 258 |
#SOCA v1 Code Output
|
| 259 |
-
user_response = f"""Confidence score of the student across different subjects out of 10 :{confidence_scores_str},
|
| 260 |
-
'When faced with complex,multi-stemp problems in JEE, how likely are you to approach problem-solving systematically, breaking down each step ?':{problem_solving_approach},
|
| 261 |
-
'In your JEE preparation, how likely are you to ensure thorough understanding of fundamental concepts before moving on to advanced topics ?':{thorough_understanding},
|
| 262 |
-
'How likely are to integrate feedback from practice tests or teachers into your JEE preparation strategy ?':{feedback},
|
| 263 |
-
'When encountering a misconception or misunderstanding in a JEE concept, how likely are you to identify and resolve it ?': {misconception},
|
| 264 |
-
'How likely are you to effectively manage time during JEE exams, especially in sections with limited time constraints?':{time_management},
|
| 265 |
-
'How do you divide your study time among Physics, Chemistry and Mathematics for JEE ? (Allocate Percentage)': {time_division},
|
| 266 |
-
'How often do you use mock tests and past question papers for JEE preparation ?': {mock_test_frequency},
|
| 267 |
-
'How do you monitor your progress in JEE topics or chapters?': {progress_monitoring},
|
| 268 |
-
'How do you adjust your study methods for difficult or new JEE topics ?': {study_methods},
|
| 269 |
-
'What techniques do you use to remember JEE concepts and formulas for a long time ? eg: Flashcards, Mindmap, etc.': {study_techniques}"""
|
| 270 |
|
| 271 |
|
| 272 |
outputSOCAv1 = swot_bot.query(system_prompt + user_response)
|
|
|
|
| 256 |
|
| 257 |
|
| 258 |
#SOCA v1 Code Output
|
| 259 |
+
user_response = f"""Confidence score of the student across different subjects out of 10 :{input_data.confidence_scores_str},
|
| 260 |
+
'When faced with complex,multi-stemp problems in JEE, how likely are you to approach problem-solving systematically, breaking down each step ?':{input_data.problem_solving_approach},
|
| 261 |
+
'In your JEE preparation, how likely are you to ensure thorough understanding of fundamental concepts before moving on to advanced topics ?':{input_data.thorough_understanding},
|
| 262 |
+
'How likely are to integrate feedback from practice tests or teachers into your JEE preparation strategy ?':{input_data.feedback},
|
| 263 |
+
'When encountering a misconception or misunderstanding in a JEE concept, how likely are you to identify and resolve it ?': {input_data.misconception},
|
| 264 |
+
'How likely are you to effectively manage time during JEE exams, especially in sections with limited time constraints?':{input_data.time_management},
|
| 265 |
+
'How do you divide your study time among Physics, Chemistry and Mathematics for JEE ? (Allocate Percentage)': {input_data.time_division},
|
| 266 |
+
'How often do you use mock tests and past question papers for JEE preparation ?': {input_data.mock_test_frequency},
|
| 267 |
+
'How do you monitor your progress in JEE topics or chapters?': {input_data.progress_monitoring},
|
| 268 |
+
'How do you adjust your study methods for difficult or new JEE topics ?': {input_data.study_methods},
|
| 269 |
+
'What techniques do you use to remember JEE concepts and formulas for a long time ? eg: Flashcards, Mindmap, etc.': {input_data.study_techniques}"""
|
| 270 |
|
| 271 |
|
| 272 |
outputSOCAv1 = swot_bot.query(system_prompt + user_response)
|