import gradio as gr def process(input_text): output_text == (input_text) return output_image demo = gr.Interface( process, "text", "text", examples=["hi,how are you", "write code of python by flask for a bot of teleg4"], ) demo.launch()