Laughify's picture
git add app.py $git commit -m "Add application file" $git push
9224595
raw
history blame
227 Bytes
git clone https://huggingface.co/spaces/Laughify/Among_Us_Logic_AI_Generator
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()