13 lines
324 B
Python
13 lines
324 B
Python
"""
|
|
Discord Chat Embeddings Visualizer - Legacy Entry Point
|
|
|
|
This file serves as a compatibility layer for the original cluster.py.
|
|
The application has been refactored into modular components for better maintainability.
|
|
"""
|
|
|
|
# Import and run the main application
|
|
from main import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|