Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| # Import the individual interfaces | |
| from semantic_similarity_app import similarity_interface | |
| from ai_detection_app import ai_detection_interface | |
| # Create the combined tabbed interface | |
| app = gr.TabbedInterface( | |
| [similarity_interface, ai_detection_interface], | |
| ["Enhanced Similarity Detection", "Enhanced AI Detection"], | |
| title="🎯 Professional Plagiarism & AI Detection Suite - Enhanced Edition" | |
| ) | |
| if __name__ == "__main__": | |
| app.launch() |