Some checks failed
Docker Build & Push / build (push) Has been cancelled
- Added WebLLM service for client-side AI summarization and translation - Improved summary quality (5 sentences, 600 char limit) - Added Vietnamese character detection for proper language labels - Added Copy button for summary content - Key Points now extract conceptual ideas, not transcript excerpts - Removed mini player (scroll-to-minimize) feature - Fixed main.js null container error - Silent WebLLM loading (no overlay/toasts) - Added transcript service with yt-dlp
12 lines
316 B
Python
Executable file
12 lines
316 B
Python
Executable file
"""
|
|
KV-Tube WSGI Entry Point
|
|
Slim entry point that uses the app factory
|
|
"""
|
|
from app import create_app
|
|
|
|
# Create the Flask application
|
|
app = create_app()
|
|
|
|
if __name__ == "__main__":
|
|
print(f"Starting KV-Tube Server on port 5002")
|
|
app.run(debug=True, host="0.0.0.0", port=5002, use_reloader=False)
|