Muhammad541 commited on
Commit
337d086
·
verified ·
1 Parent(s): 2f417d6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -91,7 +91,7 @@ if questions_df is None or questions_df.empty:
91
  if not all(col in questions_df.columns for col in ["Skill", "Question", "Answer"]):
92
  logger.error("questions_df is missing required columns. Exiting.")
93
  exit(1)
94
- logger.info(f"questions_df loaded with {len(questions_df)} rows. Skills available: {questions_df['Skill'].unique().tolist()}")
95
 
96
  # Load or Initialize Models
97
  if os.path.exists(UNIVERSAL_MODEL_PATH):
 
91
  if not all(col in questions_df.columns for col in ["Skill", "Question", "Answer"]):
92
  logger.error("questions_df is missing required columns. Exiting.")
93
  exit(1)
94
+ logger.info(f"questions_df loaded with {len(questions_df)} rows. Skills available: {list(questions_df['Skill'].unique())}")
95
 
96
  # Load or Initialize Models
97
  if os.path.exists(UNIVERSAL_MODEL_PATH):