Spaces:
				
			
			
	
			
			
		Paused
		
	
	
	
			
			
	
	
	
	
		
		
		Paused
		
	feat: add `Qwen/Qwen2.5-Coder-32B-Instruct` (#1558)
Browse files- chart/env/prod.yaml +39 -1
    	
        chart/env/prod.yaml
    CHANGED
    
    | @@ -163,6 +163,37 @@ envVars: | |
| 163 | 
             
                      "baseURL": "https://api-inference.huggingface.co/models/nvidia/Llama-3.1-Nemotron-70B-Instruct-HF/v1"
         | 
| 164 | 
             
                    }]
         | 
| 165 | 
             
                  },
         | 
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
| 166 | 
             
                  {
         | 
| 167 | 
             
                    "name": "meta-llama/Llama-3.2-11B-Vision-Instruct",
         | 
| 168 | 
             
                    "logoUrl": "https://huggingface.co/datasets/huggingchat/models-logo/resolve/main/meta-logo.png",
         | 
| @@ -334,7 +365,14 @@ envVars: | |
| 334 | 
             
                ]
         | 
| 335 | 
             
              PUBLIC_ORIGIN: "https://huggingface.co"
         | 
| 336 | 
             
              PUBLIC_SHARE_PREFIX: "https://hf.co/chat"
         | 
| 337 | 
            -
              PUBLIC_ANNOUNCEMENT_BANNERS:  | 
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
| 338 | 
             
              PUBLIC_APP_NAME: "HuggingChat"
         | 
| 339 | 
             
              PUBLIC_APP_ASSETS: "huggingchat"
         | 
| 340 | 
             
              PUBLIC_APP_COLOR: "yellow"
         | 
|  | |
| 163 | 
             
                      "baseURL": "https://api-inference.huggingface.co/models/nvidia/Llama-3.1-Nemotron-70B-Instruct-HF/v1"
         | 
| 164 | 
             
                    }]
         | 
| 165 | 
             
                  },
         | 
| 166 | 
            +
                  {
         | 
| 167 | 
            +
                    "name": "Qwen/Qwen2.5-Coder-32B-Instruct",
         | 
| 168 | 
            +
                    "description": "Qwen's latest coding model, in its biggest size yet. SOTA on many coding benchmarks.",
         | 
| 169 | 
            +
                    "modelUrl": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct",
         | 
| 170 | 
            +
                    "websiteUrl": "https://qwenlm.github.io/blog/qwen2.5-coder/",
         | 
| 171 | 
            +
                    "logoUrl": "https://huggingface.co/datasets/huggingchat/models-logo/resolve/main/qwen-logo.png",
         | 
| 172 | 
            +
                    "parameters": {
         | 
| 173 | 
            +
                      "stop": ["<|im_end|>", "<|endoftext|>"],
         | 
| 174 | 
            +
                      "temperature": 0.6,
         | 
| 175 | 
            +
                      "truncate": 28672,
         | 
| 176 | 
            +
                      "max_new_tokens": 3072
         | 
| 177 | 
            +
                    },
         | 
| 178 | 
            +
                    "promptExamples": [
         | 
| 179 | 
            +
                      {
         | 
| 180 | 
            +
                        "title": "To-do list web app",
         | 
| 181 | 
            +
                        "prompt": "Create a simple to-do list application where users can:\n- Add new tasks.\n- Mark tasks as complete.\n- Delete completed tasks.\nThe tasks should persist in the browser's local storage so that they remain available even after a page reload.\n"
         | 
| 182 | 
            +
                      },
         | 
| 183 | 
            +
                      {
         | 
| 184 | 
            +
                        "title": "Create a REST API",
         | 
| 185 | 
            +
                        "prompt": "Build a simple REST API using Node.js, TypeScript and Express:\n- POST /items: Accepts a JSON body with name and quantity and adds a new item.\n- GET /items: Returns a list of all items.\n- PUT /items/:id: Updates the name or quantity of an item by its id.\n- DELETE /items/:id: Removes an item by its id.\nUse an in-memory array as the data store (no need for a database). Include basic error handling (e.g., item not found)."
         | 
| 186 | 
            +
                      },
         | 
| 187 | 
            +
                      {
         | 
| 188 | 
            +
                        "title": "Simple website",
         | 
| 189 | 
            +
                        "prompt": "Generate a snazzy static landing page for a local coffee shop using HTML and CSS. You can use tailwind using <script src='https://cdn.tailwindcss.com'></script>."
         | 
| 190 | 
            +
                      }
         | 
| 191 | 
            +
                    ],
         | 
| 192 | 
            +
                    "endpoints": [{
         | 
| 193 | 
            +
                      "type": "openai",
         | 
| 194 | 
            +
                      "baseURL": "https://api-inference.huggingface.co/models/Qwen/Qwen2.5-Coder-32B-Instruct/v1"
         | 
| 195 | 
            +
                    }]
         | 
| 196 | 
            +
                  },
         | 
| 197 | 
             
                  {
         | 
| 198 | 
             
                    "name": "meta-llama/Llama-3.2-11B-Vision-Instruct",
         | 
| 199 | 
             
                    "logoUrl": "https://huggingface.co/datasets/huggingchat/models-logo/resolve/main/meta-logo.png",
         | 
|  | |
| 365 | 
             
                ]
         | 
| 366 | 
             
              PUBLIC_ORIGIN: "https://huggingface.co"
         | 
| 367 | 
             
              PUBLIC_SHARE_PREFIX: "https://hf.co/chat"
         | 
| 368 | 
            +
              PUBLIC_ANNOUNCEMENT_BANNERS: >
         | 
| 369 | 
            +
                [
         | 
| 370 | 
            +
                  {
         | 
| 371 | 
            +
                    "title": "Qwen 2.5-Coder 32B is now available!",
         | 
| 372 | 
            +
                    "linkTitle": "Try it out!",
         | 
| 373 | 
            +
                    "linkHref": "https://huggingface.co/chat/models/Qwen/Qwen2.5-Coder-32B-Instruct"
         | 
| 374 | 
            +
                  }
         | 
| 375 | 
            +
                ]
         | 
| 376 | 
             
              PUBLIC_APP_NAME: "HuggingChat"
         | 
| 377 | 
             
              PUBLIC_APP_ASSETS: "huggingchat"
         | 
| 378 | 
             
              PUBLIC_APP_COLOR: "yellow"
         | 
 
			

