Trying / app.py
Jurk06's picture
Update app.py
6bbde53
raw
history blame contribute delete
149 Bytes
import gradio as gr
def square(x):
return x*x
# Create a Gradio interface
gr.Interface(fn=square, inputs="number",outputs="number").launch()