Update app.py
Browse files
app.py
CHANGED
@@ -32,9 +32,9 @@ def generate(text):
|
|
32 |
|
33 |
|
34 |
examples = [
|
35 |
-
["
|
36 |
["She felt like a flower in December"],
|
37 |
-
["2+2=4?"]
|
38 |
]
|
39 |
|
40 |
title = "ViPE: Visualize Pretty-much Everything"
|
@@ -49,7 +49,8 @@ demo = gr.Interface(
|
|
49 |
examples=examples,
|
50 |
title=title,
|
51 |
description=description,
|
52 |
-
theme="default"
|
|
|
53 |
)
|
54 |
|
55 |
demo.launch(enable_queue=True, debug=True)
|
|
|
32 |
|
33 |
|
34 |
examples = [
|
35 |
+
["brave, fantasy"],
|
36 |
["She felt like a flower in December"],
|
37 |
+
["2+2=4? hmm.."]
|
38 |
]
|
39 |
|
40 |
title = "ViPE: Visualize Pretty-much Everything"
|
|
|
49 |
examples=examples,
|
50 |
title=title,
|
51 |
description=description,
|
52 |
+
theme="default",
|
53 |
+
cache_examples=never
|
54 |
)
|
55 |
|
56 |
demo.launch(enable_queue=True, debug=True)
|