openfree commited on
Commit
e94718a
·
verified ·
1 Parent(s): 43bf227

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -8,14 +8,14 @@ from transformers import pipeline
8
 
9
  # 사용 가능한 모델 목록
10
  available_models = {
11
- "Qwen/Qwen2.5-72B-Instruct": "Qwen 2.5 (72B)",
12
- "Hermes-3-Llama-3.1-8B": "Hermes 3 Llama 3.1 (8B)",
13
- "Qwen/Qwen2.5-Coder-32B-Instruct": "Qwen 2.5 Coder (32B)",
14
  "mistralai/Mistral-Small-3.1-24B-Instruct-2503": "Mistral Small 3.1 (24B)",
 
15
  "google/gemma-3-27b-it": "Google Gemma 3 (27B)",
16
  "gemma-3-27b-it-abliterated": "Gemma 3 Abliterated (27B)",
17
- "nvidia/Llama-3.1-Nemotron-Nano-8B-v1": "Nvidia Nemotron Nano (8B)",
18
- "bartowski/mistralai_Mistral-Small-3.1-24B-Instruct-2503-GGUF": "Mistral Small GGUF (24B)",
19
  "open-r1/OlympicCoder-32B": "Olympic Coder (32B)"
20
  }
21
 
 
8
 
9
  # 사용 가능한 모델 목록
10
  available_models = {
11
+ "meta-llama/Llama-3.2-3B-Instruct": "Llama 3.2(3B)",
12
+ "Hermes-3-Llama-3.1-8B": "Hermes 3 Llama 3.1 (8B)",
13
+ "nvidia/Llama-3.1-Nemotron-Nano-8B-v1": "Nvidia Nemotron Nano (8B)",
14
  "mistralai/Mistral-Small-3.1-24B-Instruct-2503": "Mistral Small 3.1 (24B)",
15
+ "bartowski/mistralai_Mistral-Small-3.1-24B-Instruct-2503-GGUF": "Mistral Small GGUF (24B)",
16
  "google/gemma-3-27b-it": "Google Gemma 3 (27B)",
17
  "gemma-3-27b-it-abliterated": "Gemma 3 Abliterated (27B)",
18
+ "Qwen/Qwen2.5-Coder-32B-Instruct": "Qwen 2.5 Coder (32B)",
 
19
  "open-r1/OlympicCoder-32B": "Olympic Coder (32B)"
20
  }
21