ai-chatbot / app.py
Bjornwikstrom's picture
Create app.py
f41b102
clone https://huggingface.co/spaces/Bjornwikstrom/ai-chatbot
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()