pub_test / app.py
dsaigc's picture
Update app.py
df8b6ab
raw
history blame contribute delete
235 Bytes
import os, sys
import gradio as gr
def greet(name):
#chat_api = os.environ['chat_api']
return "welcome" + name + ' huggingface test'
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()