MCP_Agent / app.py
Ashokdll's picture
Update app.py
3de7cfd verified
raw
history blame contribute delete
245 Bytes
import gradio as gr
def your_function(input_text):
return f"Processed: {input_text}"
iface = gr.Interface(
fn=your_function,
inputs="text",
outputs="text",
title="HateFusion"
)
if __name__ == "__main__":
iface.launch()