File size: 171 Bytes
7f3aff8
 
56714a5
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

gr.load("models/stabilityai/stablelm-zephyr-3b").launch()

demo = gr.Interface(
    inputs=["text", "slider"],
    outputs=["text"],
)

demo.launch()