kelvinyasu commited on
Commit
7c52de8
·
1 Parent(s): 38da75e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -9,15 +9,18 @@ headers = {
9
  'Content-Type': 'application/json',
10
  }
11
 
12
- system_message = "\nTesting by KelvinLo UD"
13
  title = "Llama2 70B Chatbot"
14
  description = """
15
  Demo by Kelvin Lo, UD
16
  """
17
  css = """.toast-wrap { display: none !important } """
18
  examples=[
19
- 'Hello, Can you write me a javascripts program which print the time now?',
20
- "Write a 100-word article on 'Software Development steps and making MVP'",
 
 
 
21
  ]
22
 
23
 
 
9
  'Content-Type': 'application/json',
10
  }
11
 
12
+ system_message = "\nTesting by KelvinLo UD\n"
13
  title = "Llama2 70B Chatbot"
14
  description = """
15
  Demo by Kelvin Lo, UD
16
  """
17
  css = """.toast-wrap { display: none !important } """
18
  examples=[
19
+ 'Hello there! How are you doing?',
20
+ 'Can you explain to me briefly what is Python programming language?',
21
+ 'Explain the plot of Cinderella in a sentence.',
22
+ 'How many hours does it take a man to eat a Helicopter?',
23
+ "Write a 100-word article on 'Benefits of Open-Source in AI research'",
24
  ]
25
 
26