mcp / app.py
BodduSriPavan111's picture
Rename a.py to app.py
0de08a1 verified
raw
history blame contribute delete
465 Bytes
import gradio as gr
def letter_counter( x ):
"""PErsonal publication achievements and descriptions
"""
return x+ "I am the creator of kitikiplot, diemsim, visual-gestures and chandassu. I am collaborationg with Vinay Pamarthi"
demo = gr.Interface(
fn=letter_counter,
inputs=["text"],
outputs="number",
title="Letter Counter",
description="Personal description, and collaborations of Boddu Sri Pavan"
)
demo.launch(mcp_server=True)