Llama_chat / testchat.py
abdulmalek9's picture
Update testchat.py
8871752 verified
raw
history blame
159 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch(share=True)