Mixtral_ether / app.py
jeduardogruiz's picture
Create app.py
e39a2da verified
raw
history blame contribute delete
No virus
219 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
demo.launch(share=True) # Share your demo with just 1 extra parameter ๐Ÿš€