Testing00 / app.py
charliewilco's picture
Update app.py
46d4d36 verified
raw
history blame contribute delete
216 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
gr.load("models/nsfwthrowitaway69/lzlv_70b-exl2-8.0bpw").launch()
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()