counting / utils /text_utils_interface.py
spagestic's picture
moved interfaces for arithmetic, algebra, trigonometry, and calculus to separate files
d5d735f
raw
history blame
293 Bytes
import gradio as gr
from utils.text_utils import letter_counter
# Text Utils Tab
letter_counter_interface = gr.Interface(
fn=letter_counter,
inputs=["text", "text"],
outputs="number",
title="Letter Counter",
description="Count how many times a letter appears in a word"
)