bstraehle commited on
Commit
9b1ff17
·
1 Parent(s): 5687e57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -59,6 +59,9 @@ demo = gr.Interface(fn = invoke,
59
  gr.Textbox(label = "Prompt", lines = 1, value = "What is today's date?")],
60
  outputs = [gr.Textbox(label = "Completion", lines = 1)],
61
  title = "Generative AI - LLM & Agent",
62
- description = description)
 
 
 
63
 
64
  demo.launch()
 
59
  gr.Textbox(label = "Prompt", lines = 1, value = "What is today's date?")],
60
  outputs = [gr.Textbox(label = "Completion", lines = 1)],
61
  title = "Generative AI - LLM & Agent",
62
+ description = description,
63
+ examples = [["sk-", "What is today's date?"],
64
+ ["sk-", "What is the weather in SF?"]],
65
+ cache_examples = False)
66
 
67
  demo.launch()