File size: 275 Bytes
09ff806
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr

interface = gr.Interface(
    stream,
    inputs=[gr.Textbox(lines=5, label="Instruction")],
    outputs="textbox",
    title="Zephyr LLM Charbot",
    description="Enter a task instruction and the model will generate a response."
)


interface.launch()