# gradio_interface.py import gradio as gr from src.main import greet iface = gr.Interface(fn=greet, inputs="text", outputs="text") iface.launch()