Spaces:
				
			
			
	
			
			
					
		Running
		
	
	
	
			
			
	
	
	
	
		
		
					
		Running
		
	feat: Add DeepSeek V3 LLM
Browse files- global_config.py +7 -2
    	
        global_config.py
    CHANGED
    
    | @@ -94,13 +94,18 @@ class GlobalConfig: | |
| 94 | 
             
                        'max_new_tokens': 4096,
         | 
| 95 | 
             
                        'paid': True,
         | 
| 96 | 
             
                    },
         | 
|  | |
|  | |
|  | |
|  | |
|  | |
| 97 | 
             
                    '[to]meta-llama/Llama-3.3-70B-Instruct-Turbo': {
         | 
| 98 | 
            -
                        'description': ' | 
| 99 | 
             
                        'max_new_tokens': 4096,
         | 
| 100 | 
             
                        'paid': True,
         | 
| 101 | 
             
                    },
         | 
| 102 | 
             
                    '[to]meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo-128K': {
         | 
| 103 | 
            -
                        'description': ' | 
| 104 | 
             
                        'max_new_tokens': 4096,
         | 
| 105 | 
             
                        'paid': True,
         | 
| 106 | 
             
                    }
         | 
|  | |
| 94 | 
             
                        'max_new_tokens': 4096,
         | 
| 95 | 
             
                        'paid': True,
         | 
| 96 | 
             
                    },
         | 
| 97 | 
            +
                    '[to]deepseek-ai/DeepSeek-V3': {
         | 
| 98 | 
            +
                        'description': 'slower, medium',
         | 
| 99 | 
            +
                        'max_new_tokens': 8192,
         | 
| 100 | 
            +
                        'paid': True,
         | 
| 101 | 
            +
                    },
         | 
| 102 | 
             
                    '[to]meta-llama/Llama-3.3-70B-Instruct-Turbo': {
         | 
| 103 | 
            +
                        'description': 'slower, detailed',
         | 
| 104 | 
             
                        'max_new_tokens': 4096,
         | 
| 105 | 
             
                        'paid': True,
         | 
| 106 | 
             
                    },
         | 
| 107 | 
             
                    '[to]meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo-128K': {
         | 
| 108 | 
            +
                        'description': 'faster, shorter',
         | 
| 109 | 
             
                        'max_new_tokens': 4096,
         | 
| 110 | 
             
                        'paid': True,
         | 
| 111 | 
             
                    }
         |