File size: 315 Bytes
252b40c
 
3b57587
 
252b40c
 
3b57587
 
 
 
252b40c
 
 
 
3b57587
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)