Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,13 +3,11 @@ from gradio.mix import Series
|
|
3 |
|
4 |
#demo = gr.load("mistralai/Mixtral-8x7B-Instruct-v0.1", src="models")
|
5 |
|
6 |
-
description = "Test
|
7 |
-
title = "
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
examples
|
12 |
-
|
13 |
-
|
14 |
-
title = title,
|
15 |
-
examples=examples, inputs = gr.inputs.Textbox(lines = 10)).launch()
|
|
|
3 |
|
4 |
#demo = gr.load("mistralai/Mixtral-8x7B-Instruct-v0.1", src="models")
|
5 |
|
6 |
+
description = "Test"
|
7 |
+
title = "Test"
|
8 |
+
interface = gr.Interface.load("mistralai/Mixtral-8x7B-Instruct-v0.1",
|
9 |
+
description=description,
|
10 |
+
title = title,
|
11 |
+
examples=[["american robin"]]
|
12 |
+
)
|
13 |
+
interface.launch(share=True)
|
|
|
|