zakerytclarke commited on
Commit
08dec69
·
verified ·
1 Parent(s): fa73971

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -326,11 +326,11 @@ def main():
326
 
327
  user_input = st.chat_input("Ask me anything")
328
  list1 = ["Tell me about teapotllm", "What is Teapot AI?", "How does teapotllm work?"]
329
- list2 = ["Who invented quantum mechanics?", "Who are the authors of attention is all you need", "Tell me about popular places to travel in France"]
330
- list3 = ["Extract the year Google was founded", "Extract the last name of the father of artificial intelligence", "Output the capital of New York","Extarct the city where the louvre is located"]
331
 
332
- # Randomly select one from each list
333
- random_selection = [random.choice(list1), random.choice(list2), random.choice(list3)]
334
 
335
  s1, s2, s3 = st.columns([1, 2, 3])
336
  with s1:
 
326
 
327
  user_input = st.chat_input("Ask me anything")
328
  list1 = ["Tell me about teapotllm", "What is Teapot AI?", "How does teapotllm work?"]
329
+ list2 = ["Who invented quantum mechanics?", "Who are the authors of attention is all you need", "Tell me about popular places to travel in France","Tell me about Isaac Asimov", "Explain artificial intelligence"]
330
+ list3 = ["Extract the year Google was founded", "Extract the last name of the father of artificial intelligence", "Output the capital of New York","Extarct the city where the louvre is located","Find the chemical symbol for gold"]
331
 
332
+ # Randomly select one from each list
333
+ random_selection = [random.choice(list1), random.choice(list2), random.choice(list3)]
334
 
335
  s1, s2, s3 = st.columns([1, 2, 3])
336
  with s1: