Naresh1993's picture
Update app.py
56714a5 verified
raw
history blame
No virus
171 Bytes
import gradio as gr
gr.load("models/stabilityai/stablelm-zephyr-3b").launch()
demo = gr.Interface(
inputs=["text", "slider"],
outputs=["text"],
)
demo.launch()