Spaces:
Sleeping
Sleeping
| 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() |
| 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() |