| import gradio as gr | |
| from tdagent.tools.get_url_content import gr_get_url_http_content | |
| from tdagent.tools.letter_counter import gr_letter_counter | |
| gr_app = gr.TabbedInterface( | |
| [ | |
| gr_get_url_http_content, | |
| gr_letter_counter, | |
| ], | |
| ) | |
| if __name__ == "__main__": | |
| gr_app.launch(mcp_server=True) | |