ai-workflow / app.py
neila123's picture
Create app.py
ca9b34e verified
raw
history blame contribute delete
211 Bytes
import gradio as gr
def chatbot(input_text):
return "Tu as écrit : " + input_text
iface = gr.Interface(
fn=chatbot,
inputs="text",
outputs="text",
title="Mon AI Workflow"
)
iface.launch()