Mr-Geo commited on
Commit
6270206
Β·
verified Β·
1 Parent(s): a9f5d5e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -4
app.py CHANGED
@@ -522,11 +522,12 @@ if __name__ == "__main__":
522
  ("Llama 3.3 - Versatile πŸ¦™βœ¨", "llama-3.3-70b-versatile"),
523
  ("Llama 4 - Latest πŸš€", "meta-llama/llama-4-scout-17b-16e-instruct"),
524
  ("Mistral Saba - Balanced βš–οΈ", "mistral-saba-24b"),
525
- ("DeepSeek - Reasoning πŸ§ πŸ”", "deepseek-r1-distill-llama-70b")
 
526
  ],
527
  value="llama-3.3-70b-versatile",
528
  label="Select AI Large Language Model πŸ€–",
529
- info="Please try out the other AI models to use for responses (all LLMs are running on [GroqCloud](https://groq.com/groqrack/)) 😊"
530
  )
531
 
532
  chatbot = gr.Chatbot(height=600, type="messages")
@@ -545,8 +546,11 @@ if __name__ == "__main__":
545
  examples=[
546
  "What research stations does BAS operate in Antarctica? πŸ”οΈ",
547
  "Tell me about the RRS Sir David Attenborough 🚒",
548
- "What kind of science and research does BAS do? πŸ”¬",
549
- "What is BAS doing about climate change? 🌑️",
 
 
 
550
  ],
551
  inputs=msg,
552
  )
 
522
  ("Llama 3.3 - Versatile πŸ¦™βœ¨", "llama-3.3-70b-versatile"),
523
  ("Llama 4 - Latest πŸš€", "meta-llama/llama-4-scout-17b-16e-instruct"),
524
  ("Mistral Saba - Balanced βš–οΈ", "mistral-saba-24b"),
525
+ ("DeepSeek - Reasoning πŸ§ πŸ”", "deepseek-r1-distill-llama-70b"),
526
+ ("Compound Beta - Agentic & Live Search πŸ› οΈπŸ”Ž", "compound-beta")
527
  ],
528
  value="llama-3.3-70b-versatile",
529
  label="Select AI Large Language Model πŸ€–",
530
+ info="Please try out the other AI models to use for responses (all LLMs are running on [GroqCloud](https://groq.com/groqrack/)) - Compound Beta includes live internet searching! πŸ”Ž"
531
  )
532
 
533
  chatbot = gr.Chatbot(height=600, type="messages")
 
546
  examples=[
547
  "What research stations does BAS operate in Antarctica? πŸ”οΈ",
548
  "Tell me about the RRS Sir David Attenborough 🚒",
549
+ "What are the latest climate research findings from BAS? πŸ“Š",
550
+ "What current projects is BAS working on in Antarctica? πŸ”¬",
551
+ "What's the latest news about BAS's Antarctic operations? πŸ“°",
552
+ "What are BAS's most recent scientific publications? πŸ“š",
553
+ "What's happening at Rothera Research Station right now? 🌑️"
554
  ],
555
  inputs=msg,
556
  )