bpandey23_llm / app.py
bpandey23's picture
Create app.py
09ff806 verified
raw
history blame contribute delete
275 Bytes
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()