Spaces:
Sleeping
Sleeping
File size: 448 Bytes
2ea0e96 906e5a7 9ff601e 2ea0e96 906e5a7 9ff601e 9025574 2ea0e96 edab070 906e5a7 2ea0e96 bd01833 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | """
Main application entry point for MCP Browser
"""
import gradio as gr
import logging
from config.settings import UI_CSS, GEMINI_API_KEY
from ui.layout import create_main_layout
# Set up logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
# Create the main Gradio app
demo = create_main_layout()
if __name__ == "__main__":
logger.info("Starting MCP Browser application...")
demo.launch(mcp_server=True) |