Spaces:
Running
Running
sunheycho
commited on
Commit
Β·
b32c828
1
Parent(s):
8e8cd50
Debug: Add file system debugging to identify missing product_comparison.py
Browse files- Add current working directory and file listing to startup debug
- This will help identify if product_comparison.py exists in Hugging Face Spaces
- Force rebuild trigger for Hugging Face Spaces
api.py
CHANGED
@@ -95,6 +95,8 @@ except Exception as e:
|
|
95 |
|
96 |
print("=" * 80)
|
97 |
print(f"[STARTUP DEBUG] π Import test completed. Coordinator available: {get_product_comparison_coordinator is not None}")
|
|
|
|
|
98 |
print("=" * 80)
|
99 |
# νκ²½ λ³μμμ λΉλ° ν€λ₯Ό κ°μ Έμ€κ±°λ, μμΌλ©΄ μμ ν λλ€ ν€ μμ±
|
100 |
secret_key = os.environ.get('FLASK_SECRET_KEY')
|
|
|
95 |
|
96 |
print("=" * 80)
|
97 |
print(f"[STARTUP DEBUG] π Import test completed. Coordinator available: {get_product_comparison_coordinator is not None}")
|
98 |
+
print(f"[STARTUP DEBUG] π Current working directory: {os.getcwd()}")
|
99 |
+
print(f"[STARTUP DEBUG] π Files in current directory: {os.listdir('.')}")
|
100 |
print("=" * 80)
|
101 |
# νκ²½ λ³μμμ λΉλ° ν€λ₯Ό κ°μ Έμ€κ±°λ, μμΌλ©΄ μμ ν λλ€ ν€ μμ±
|
102 |
secret_key = os.environ.get('FLASK_SECRET_KEY')
|