Rakshitjan commited on
Commit
fac5fab
·
verified ·
1 Parent(s): 07dbf56

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +11 -11
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 :{getattr(user_prompt, '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 ?':{getattr(user_prompt, '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 ?':{getattr(user_prompt, 'thorough_understanding')},
262
- 'How likely are to integrate feedback from practice tests or teachers into your JEE preparation strategy ?':{getattr(user_prompt, 'feedback')},
263
- 'When encountering a misconception or misunderstanding in a JEE concept, how likely are you to identify and resolve it ?': {getattr(user_prompt, 'misconception')},
264
- 'How likely are you to effectively manage time during JEE exams, especially in sections with limited time constraints?':{getattr(user_prompt, 'time_management')},
265
- 'How do you divide your study time among Physics, Chemistry and Mathematics for JEE ? (Allocate Percentage)': {getattr(user_prompt, 'time_division')},
266
- 'How often do you use mock tests and past question papers for JEE preparation ?': {getattr(user_prompt, 'mock_test_frequency')},
267
- 'How do you monitor your progress in JEE topics or chapters?': {getattr(user_prompt, 'progress_monitoring')},
268
- 'How do you adjust your study methods for difficult or new JEE topics ?': {getattr(user_prompt, 'study_methods')},
269
- 'What techniques do you use to remember JEE concepts and formulas for a long time ? eg: Flashcards, Mindmap, etc.': {getattr(user_prompt, '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 :{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)