dr_House / app.py
pivovalera2012's picture
Update app.py
7d37f96 verified
raw
history blame
No virus
189 Bytes
import gradio as gr
def generate_text(prompt):
return 'Привет'
demo = gr.Interface(
generate_text,
inputs=["textbox"],
outputs=["textbox"],
]
)
demo.launch()