model / app.py
ttb63's picture
Create app.py
c25b860 verified
raw
history blame contribute delete
259 Bytes
import gradio as gr
def count_characters(text):
return f"Number of characters: {len(text)}"
demo = gr.Interface(
fn=count_characters,
inputs=gr.Textbox(label="Enter your text"),
outputs="text",
title="Character Counter"
)
demo.launch()