Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,24 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
gr.load("models/mistralai/Mixtral-8x7B-Instruct-v0.1")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
model = gr.load("models/mistralai/Mixtral-8x7B-Instruct-v0.1")
|
4 |
+
|
5 |
+
def chat(prompt, response_type):
|
6 |
+
if response_type == "Short":
|
7 |
+
return model(prompt, max_tokens=50)
|
8 |
+
elif response_type == "Medium":
|
9 |
+
return model(prompt, max_tokens=100)
|
10 |
+
else:
|
11 |
+
return model(prompt, max_tokens=200)
|
12 |
+
|
13 |
+
demo = gr.Interface(
|
14 |
+
fn=chat,
|
15 |
+
inputs=[
|
16 |
+
gr.Textbox(label="Prompt"),
|
17 |
+
gr.Radio(["Short", "Medium", "Long"], label="Response Type")
|
18 |
+
],
|
19 |
+
outputs=gr.Textbox(label="Response"),
|
20 |
+
title="Mixtral-8x7B-Instruct-v0.1 Chat",
|
21 |
+
description="Chat with the Mixtral-8x7B-Instruct-v0.1 model."
|
22 |
+
)
|
23 |
+
|
24 |
+
demo.launch()
|