mgbam commited on
Commit
a8a6b95
·
verified ·
1 Parent(s): d5507c3

Update constants.py

Browse files
Files changed (1) hide show
  1. constants.py +11 -11
constants.py CHANGED
@@ -88,17 +88,17 @@ SYSTEM_PROMPTS = {
88
 
89
  # Available HF models for code generation
90
  AVAILABLE_MODELS = [
91
- ("Moonshot Kimi-K2", "moonshotai/Kimi-K2-Instruct"),
92
- ("DeepSeek V3", "deepseek-ai/DeepSeek-V3-0324"),
93
- ("DeepSeek R1", "deepseek-ai/DeepSeek-R1-0528"),
94
- ("ERNIE-4.5-VL", "baidu/ERNIE-4.5-VL-424B-A47B-Base-PT"),
95
- ("MiniMax M1", "MiniMaxAI/MiniMax-M1-80k"),
96
- ("Qwen3-235B-A22B", "Qwen/Qwen3-235B-A22B"),
97
- ("SmolLM3-3B", "HuggingFaceTB/SmolLM3-3B"),
98
- ("GLM-4.1V-9B-Thinking", "THUDM/GLM-4.1V-9B-Thinking"),
99
- ("OpenAI GPT-4", "openai/gpt-4"),
100
- ("Gemini Pro", "gemini/pro"),
101
- ("Fireworks AI", "fireworks-ai/fireworks-v1"),
102
  ]
103
 
104
  # Quick‑start demo list
 
88
 
89
  # Available HF models for code generation
90
  AVAILABLE_MODELS = [
91
+ {"name": "Moonshot Kimi-K2", "id": "moonshotai/Kimi-K2-Instruct", "description": "Moonshot AI Kimi-K2-Instruct model", "category": "Hugging Face"},
92
+ {"name": "DeepSeek V3", "id": "deepseek-ai/DeepSeek-V3-0324", "description": "DeepSeek V3 model", "category": "Hugging Face"},
93
+ {"name": "DeepSeek R1", "id": "deepseek-ai/DeepSeek-R1-0528", "description": "DeepSeek R1 model", "category": "Hugging Face"},
94
+ {"name": "ERNIE-4.5-VL", "id": "baidu/ERNIE-4.5-VL-424B-A47B-Base-PT", "description": "ERNIE-4.5-VL model", "category": "Hugging Face"},
95
+ {"name": "MiniMax M1", "id": "MiniMaxAI/MiniMax-M1-80k", "description": "MiniMax M1 model", "category": "Hugging Face"},
96
+ {"name": "Qwen3-235B-A22B", "id": "Qwen/Qwen3-235B-A22B", "description": "Qwen3-235B-A22B model", "category": "Hugging Face"},
97
+ {"name": "SmolLM3-3B", "id": "HuggingFaceTB/SmolLM3-3B", "description": "SmolLM3-3B model", "category": "Hugging Face"},
98
+ {"name": "GLM-4.1V-9B-Thinking", "id": "THUDM/GLM-4.1V-9B-Thinking", "description": "GLM-4.1V-9B-Thinking model", "category": "Hugging Face"},
99
+ {"name": "OpenAI GPT-4", "id": "openai/gpt-4", "description": "OpenAI GPT-4 model", "category": "OpenAI"},
100
+ {"name": "Gemini Pro", "id": "gemini/pro", "description": "Google Gemini Pro model", "category": "Gemini"},
101
+ {"name": "Fireworks AI", "id": "fireworks-ai/fireworks-v1", "description": "Fireworks AI model", "category": "Fireworks AI"},
102
  ]
103
 
104
  # Quick‑start demo list