Spaces:
Sleeping
Sleeping
File size: 507 Bytes
e29e4c8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
"""
Simple version of app.py that runs WITHOUT advanced ML features
Use this for quick testing or if you have import issues
"""
import os
# Disable ALL ML features before any imports
os.environ['SKIP_ML_FEATURES'] = '1'
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
os.environ['TRANSFORMERS_NO_TF'] = '1'
print("=" * 50)
print("SkillSync - Running in BASIC MODE")
print("Advanced ML features are DISABLED for quick start")
print("=" * 50)
print()
# Now import and run the main app
exec(open('app.py').read())
|