singarajusaiteja's picture
core app upload
dad1de9 verified
raw
history blame contribute delete
428 Bytes
#!/usr/bin/env python3
"""
Corpus Collection Engine - Hugging Face Spaces Entry Point
AI-powered app for collecting diverse data on Indian languages, history, and culture
"""
import sys
import os
# Add the current directory to Python path for imports
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
# Import and run the main application
from main import main
if __name__ == "__main__":
main()