Update app.py
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ gr.close_all()
|
|
26 |
|
27 |
demo = gr.Interface(fn = invoke,
|
28 |
inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
|
29 |
-
gr.Textbox(label = "Task", value = os.environ['INPUT']
|
30 |
outputs = [gr.Markdown(label = "Output", value = os.environ["OUTPUT"], line_breaks = True, sanitize_html = False)],
|
31 |
title = "Multi-Agent AI: Coding",
|
32 |
description = os.environ["DESCRIPTION"])
|
|
|
26 |
|
27 |
demo = gr.Interface(fn = invoke,
|
28 |
inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
|
29 |
+
gr.Textbox(label = "Task", value = os.environ['INPUT'])],
|
30 |
outputs = [gr.Markdown(label = "Output", value = os.environ["OUTPUT"], line_breaks = True, sanitize_html = False)],
|
31 |
title = "Multi-Agent AI: Coding",
|
32 |
description = os.environ["DESCRIPTION"])
|