--- 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