mcp-tscontext / main.py
znacer's picture
first iteration
0167724
raw
history blame
366 Bytes
"""Module to launch the application.
run: `gradio main.py` to run the application
"""
import sys
from loguru import logger
from app.ui import demo
logger.add(
sys.stdout,
format="<green>{time}</green> <level>{message}</level>",
filter="my_module",
level="INFO",
colorize=True,
)
if __name__ == "__main__":
demo.launch(mcp_server=True)