File size: 439 Bytes
e861823 f6df21b e861823 f6df21b e861823 f6df21b e861823 f6df21b e861823 f6df21b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
---
title: Little Krishna Chatbot
emoji: 🦚
colorFrom: blue
colorTo: yellow
sdk: docker
app_file: app.py
pinned: false
---
# Little Krishna Chatbot 🎶🐳
## 🚨 Fixing "Application Not Initialized" Error
### Root Cause
The Flask app isn't properly exposed on port 7860 (Hugging Face's default port)
### Solution 1: Update `app.py`
```python
if __name__ == '__main__':
app.run(host='0.0.0.0', port=7860) # Add this at the end |