wop commited on
Commit
cb5a55d
·
verified ·
1 Parent(s): 42855e9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -53,6 +53,13 @@ customCSS = """
53
  with gr.Blocks(theme=gr.themes.Soft()) as demo:
54
  gr.ChatInterface(
55
  generate,
 
 
 
 
 
 
 
56
  )
57
 
58
  demo.queue(concurrency_count=75, max_size=100).launch(debug=True)
 
53
  with gr.Blocks(theme=gr.themes.Soft()) as demo:
54
  gr.ChatInterface(
55
  generate,
56
+ examples=[
57
+ ["Hello BibleLearnerAI!"],
58
+ ["Please explain this: "],
59
+ ["Explain this verse: "],
60
+ ["Give me a random bible verse."],
61
+ ["Search a few verses releated to this: "],
62
+ ],
63
  )
64
 
65
  demo.queue(concurrency_count=75, max_size=100).launch(debug=True)