bstraehle commited on
Commit
b26decb
·
verified ·
1 Parent(s): 8af03e7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -96,7 +96,7 @@ demo = gr.Interface(
96
  gr.Textbox(label = "Prompt", lines = 1,
97
  value = "How does current weather in San Francisco and Paris compare in metric and imperial system? Answer in JSON format and include today's date."),
98
  gr.Radio([AGENT_OFF, AGENT_LANGCHAIN, AGENT_LLAMAINDEX], label = "Use Agent", value = AGENT_LANGCHAIN)],
99
- outputs = [gr.Textbox(label = "Completion", value=os.environ["OUTPUT"])],
100
  title = "Agentic Reasoning Application",
101
  description = os.environ["DESCRIPTION"]
102
  )
 
96
  gr.Textbox(label = "Prompt", lines = 1,
97
  value = "How does current weather in San Francisco and Paris compare in metric and imperial system? Answer in JSON format and include today's date."),
98
  gr.Radio([AGENT_OFF, AGENT_LANGCHAIN, AGENT_LLAMAINDEX], label = "Use Agent", value = AGENT_LANGCHAIN)],
99
+ outputs = [gr.Markdown(label = "Completion", value=os.environ["OUTPUT"])],
100
  title = "Agentic Reasoning Application",
101
  description = os.environ["DESCRIPTION"]
102
  )