Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
interface = gr.Interface(
|
4 |
+
stream,
|
5 |
+
inputs=[gr.Textbox(lines=5, label="Instruction")],
|
6 |
+
outputs="textbox",
|
7 |
+
title="Zephyr LLM Charbot",
|
8 |
+
description="Enter a task instruction and the model will generate a response."
|
9 |
+
)
|
10 |
+
|
11 |
+
|
12 |
+
interface.launch()
|