kambris commited on
Commit
6130985
Β·
verified Β·
1 Parent(s): d636c54

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -12,7 +12,7 @@ MODELS = [
12
  "meta-llama/Llama-3.3-70B-Instruct", # πŸ‡ΊπŸ‡Έ USA (Meta)
13
  "Qwen/Qwen2.5-72B-Instruct", # πŸ‡¨πŸ‡³ China (Alibaba)
14
  "deepseek-ai/DeepSeek-R1", # πŸ‡¨πŸ‡³ China (DeepSeek)
15
- "mistralai/Mistral-Large-2411" # πŸ‡«πŸ‡· France (Mistral AI)
16
  ]
17
 
18
  def query_model(model_id, prompt, max_tokens=300, temperature=0.7):
@@ -73,7 +73,7 @@ with gr.Blocks(title="LLM Response Collector") as demo:
73
  - **Llama 3.3 70B** πŸ‡ΊπŸ‡Έ - Meta's latest instruction model (USA)
74
  - **Qwen 2.5 72B** πŸ‡¨πŸ‡³ - Alibaba's powerful multilingual model (China)
75
  - **DeepSeek R1** πŸ‡¨πŸ‡³ - Advanced reasoning model (China)
76
- - **Mistral Large** πŸ‡«πŸ‡· - Mistral AI's flagship model (France)
77
 
78
  Each query is independent with no conversation history.
79
  """)
 
12
  "meta-llama/Llama-3.3-70B-Instruct", # πŸ‡ΊπŸ‡Έ USA (Meta)
13
  "Qwen/Qwen2.5-72B-Instruct", # πŸ‡¨πŸ‡³ China (Alibaba)
14
  "deepseek-ai/DeepSeek-R1", # πŸ‡¨πŸ‡³ China (DeepSeek)
15
+ "tiiuae/falcon-180B-chat" # πŸ‡¦πŸ‡ͺ UAE (Technology Innovation Institute)
16
  ]
17
 
18
  def query_model(model_id, prompt, max_tokens=300, temperature=0.7):
 
73
  - **Llama 3.3 70B** πŸ‡ΊπŸ‡Έ - Meta's latest instruction model (USA)
74
  - **Qwen 2.5 72B** πŸ‡¨πŸ‡³ - Alibaba's powerful multilingual model (China)
75
  - **DeepSeek R1** πŸ‡¨πŸ‡³ - Advanced reasoning model (China)
76
+ - **Falcon 180B** πŸ‡¦πŸ‡ͺ - Technology Innovation Institute's flagship model (UAE)
77
 
78
  Each query is independent with no conversation history.
79
  """)