Update app.py
Browse files
app.py
CHANGED
@@ -63,7 +63,7 @@ gr.close_all()
|
|
63 |
|
64 |
demo = gr.Interface(fn = invoke,
|
65 |
inputs = [gr.Textbox(label = "Prompt", value = "If I dry one shirt in the sun, it takes 1 hour. How long do 3 shirts take?", lines = 1)],
|
66 |
-
outputs = [gr.Markdown(label = "Completion",
|
67 |
description = description)
|
68 |
|
69 |
demo.launch()
|
|
|
63 |
|
64 |
demo = gr.Interface(fn = invoke,
|
65 |
inputs = [gr.Textbox(label = "Prompt", value = "If I dry one shirt in the sun, it takes 1 hour. How long do 3 shirts take?", lines = 1)],
|
66 |
+
outputs = [gr.Markdown(label = "Completion", value = os.environ["COMPLETION"])],
|
67 |
description = description)
|
68 |
|
69 |
demo.launch()
|