Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,14 @@
|
|
1 |
|
2 |
-
|
3 |
|
4 |
-
|
|
|
|
|
5 |
|
6 |
-
|
|
|
|
|
|
|
7 |
|
|
|
8 |
|
|
|
1 |
|
2 |
+
mport gradio as gr
|
3 |
|
4 |
+
description = "Story generation with GPT-2"
|
5 |
+
title = "Generate your own story"
|
6 |
+
examples = [["Adventurer is approached by a mysterious stranger in the tavern for a new quest."]]
|
7 |
|
8 |
+
interface = gr.Interface.load("liuhaotian/llava-v1.6-vicuna-7b",
|
9 |
+
description=description,
|
10 |
+
examples=examples
|
11 |
+
)
|
12 |
|
13 |
+
interface.launch()
|
14 |
|