SEUyishu's picture
Upload 16 files
7f0fa00 verified
raw
history blame contribute delete
343 Bytes
#!/usr/bin/env python3
"""
Main application entry point for HuggingFace Spaces.
This file serves as the main entry point when deployed to HuggingFace Spaces.
It redirects to the entrypoint module which starts the MCP server.
"""
# Import and run the entrypoint
from entrypoint import main
if __name__ == "__main__":
main()