Upload app.py (#8)
Browse files- Upload app.py (08945b4000726ff3a58c2571d66022c72cd46d2a)
app.py
CHANGED
@@ -20,6 +20,4 @@ examples = [
|
|
20 |
["What is the square root of 64?", "The square root of 64 is 8."]
|
21 |
]
|
22 |
|
23 |
-
demo = gr.Interface(fn=generate_text, inputs=input_text, outputs=output_text, title="Vicuna Language Model", description=description)
|
24 |
-
|
25 |
-
demo.launch(share=True)
|
|
|
20 |
["What is the square root of 64?", "The square root of 64 is 8."]
|
21 |
]
|
22 |
|
23 |
+
demo = gr.Interface(fn=generate_text, inputs=input_text, outputs=output_text, title="Vicuna Language Model", description=description).launch()
|
|
|
|