Update app.py
Browse files
app.py
CHANGED
@@ -76,5 +76,5 @@ demo = gr.Interface(fn=process,
|
|
76 |
gr.Textbox(label = "System Prompt", value = system_prompt, lines = 2),
|
77 |
gr.Textbox(label = "User Prompt", value = user_prompt, lines = 2),
|
78 |
gr.Textbox(label = "Schema", value = schema, lines = 2)],
|
79 |
-
outputs=[gr.Textbox(label = "Completion")])
|
80 |
demo.launch()
|
|
|
76 |
gr.Textbox(label = "System Prompt", value = system_prompt, lines = 2),
|
77 |
gr.Textbox(label = "User Prompt", value = user_prompt, lines = 2),
|
78 |
gr.Textbox(label = "Schema", value = schema, lines = 2)],
|
79 |
+
outputs=[gr.Textbox(label = "Completion", value = os.environ["OUTPUT"])])
|
80 |
demo.launch()
|