Rohan Kataria
new changes
1f80e51
raw
history blame
147 Bytes
# gradio_interface.py
import gradio as gr
from src.main import greet
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()