@@ -6,42 +6,48 @@ const AVAILABLE_MODELS = [
66    name : 'Llama 3.2 1B' , 
77    description : 'Meta model, 1.2 GB' , 
88    url : 'onnx-community/Llama-3.2-1B-Instruct-q4f16' , 
9-     hasReasoningBlocks : false 
9+     hasReasoningBlocks : false , 
10+     contextSize : 131072  // 128k tokens 
1011  } , 
1112  { 
1213    id : 'llama-3.2-3b' , 
1314    name : 'Llama 3.2 3B' , 
1415    description : 'Meta model, 2.4 GB' , 
1516    url : 'onnx-community/Llama-3.2-3B-Instruct-onnx-web-gqa' , 
16-     hasReasoningBlocks : false 
17+     hasReasoningBlocks : false , 
18+     contextSize : 131072  // 128k tokens 
1719  } , 
1820  { 
1921    id : 'phi-3.5-mini' , 
2022    name : 'Phi-3.5 Mini 3.8B' , 
2123    description : 'Microsoft model, 2.1 GB' , 
2224    url : 'onnx-community/Phi-3.5-mini-instruct-onnx-web' , 
23-     hasReasoningBlocks : false 
25+     hasReasoningBlocks : false , 
26+     contextSize : 131072  // 128k tokens 
2427  } , 
2528  { 
2629    id : 'smollm2-1.7b' , 
2730    name : 'SmolLM2 1.7B' , 
2831    description : 'HuggingFace model, 1.1 GB' , 
2932    url : 'HuggingFaceTB/SmolLM2-1.7B-Instruct' , 
30-     hasReasoningBlocks : false 
33+     hasReasoningBlocks : false , 
34+     contextSize : 8192  // 8k tokens 
3135  } , 
3236  { 
3337    id : 'qwen3-0.6b' , 
3438    name : 'Qwen3 0.6B' , 
3539    description : 'Alibaba model, 0.5 GB' , 
3640    url : 'onnx-community/Qwen3-0.6B-ONNX' , 
37-     hasReasoningBlocks : true 
41+     hasReasoningBlocks : true , 
42+     contextSize : 32768  // 32k tokens 
3843  } , 
3944  { 
4045    id : 'deepseek-r1-distill-qwen-1.5b' , 
4146    name : 'DeepSeek-R1-Distill-Qwen 1.5B' , 
4247    description : 'DeepSeek model, 1.3 GB' , 
4348    url : 'onnx-community/DeepSeek-R1-Distill-Qwen-1.5B-ONNX' , 
44-     hasReasoningBlocks : true 
49+     hasReasoningBlocks : true , 
50+     contextSize : 131072  // 128k tokens 
4551  } 
4652] ; 
4753
0 commit comments