simonduerr's picture
Create app.py
f1c8a72
raw
history blame
No virus
183 Bytes
import gradio as gr
import jax
print(jax.__version__)
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()