Spaces:
Sleeping
Sleeping
| 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) |