bstraehle commited on
Commit
13a57a8
·
1 Parent(s): c503efd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -57,7 +57,7 @@ gr.close_all()
57
 
58
  demo = gr.Interface(fn = invoke,
59
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
60
- gr.Textbox(label = "Prompt", lines = 1)], "What date is today?",
61
  outputs = [gr.Textbox(label = "Completion", lines = 1)],
62
  title = "Generative AI - LLM & Agent",
63
  description = description)
 
57
 
58
  demo = gr.Interface(fn = invoke,
59
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
60
+ gr.Textbox(label = "Prompt", lines = 1, value = "What is today's date?")],
61
  outputs = [gr.Textbox(label = "Completion", lines = 1)],
62
  title = "Generative AI - LLM & Agent",
63
  description = description)