bstraehle commited on
Commit
b1aaabe
·
1 Parent(s): 6496277

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -76,7 +76,7 @@ gr.close_all()
76
 
77
  demo = gr.Interface(fn = invoke,
78
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
79
- gr.Textbox(label = "Prompt", lines = 1, value = "How does current weather in Los Angeles, New York, and Paris compare in metric and imperial system? Answer in JSON format."),
80
  gr.Radio([AGENT_OFF, AGENT_ON], label = "Use Agent", value = AGENT_ON)],
81
  outputs = [gr.Textbox(label = "Completion", lines = 1)],
82
  title = "Real-Time Reasoning Application",
 
76
 
77
  demo = gr.Interface(fn = invoke,
78
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
79
+ gr.Textbox(label = "Prompt", lines = 1, value = "How does current weather in Los Angeles, New York, and Paris compare in metric and imperial system? Answer in JSON format and include today's date."),
80
  gr.Radio([AGENT_OFF, AGENT_ON], label = "Use Agent", value = AGENT_ON)],
81
  outputs = [gr.Textbox(label = "Completion", lines = 1)],
82
  title = "Real-Time Reasoning Application",