dylanmeca commited on
Commit
b50a40d
·
1 Parent(s): 60bc894

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -5
app.py CHANGED
@@ -44,11 +44,15 @@ with block:
44
  clean = gr.Button("Clean")
45
  clean.click(Clean)
46
  gr.Examples(
47
- examples=["Hello", "Bye"],
48
- inputs=[message, state],
49
- outputs=[chatbot, state],
50
- fn=answer_chatgpt,
51
- cache_examples=False,
 
 
 
 
52
  )
53
 
54
  block.launch(debug=True)
 
44
  clean = gr.Button("Clean")
45
  clean.click(Clean)
46
  gr.Examples(
47
+ examples=["Write a poem about artificial intelligence",
48
+ "What could the future be like?",
49
+ "If x+1=20, what is the value of x?",
50
+ "Write a story that gives a message",
51
+ "What programming language is the most used in the industry?",
52
+ "Who are you?",
53
+ "Create me a training schedule to train from home"
54
+ "How can I be more productive?"],
55
+ inputs=message
56
  )
57
 
58
  block.launch(debug=True)