jbilcke-hf HF Staff commited on
Commit
ad7fb07
·
1 Parent(s): 233cefb

investigating issue with the yaml

Browse files
build/web/assets/assets/config/curated_models.yaml CHANGED
@@ -61,19 +61,17 @@ models:
61
  display_name: DeepSeek V3
62
  num_of_parameters: 685B
63
 
64
-
65
- # Gemma 3n models are not available on the Inference Providers yet
66
- #- model_id: google/gemma-3n-E2B-it
67
- # display_name: Gemma 3n E2B IT (Instruct)
68
- #
69
- # # While the raw parameter count of this model is 6B, the architecture design allows the model to be run with a memory footprint comparable to a traditional 2B model by offloading low-utilization matrices from the accelerator.
70
- # #num_of_parameters: 6B
71
- # num_of_parameters: 2B
72
- #
73
- #- model_id: google/gemma-3n-E4B-it
74
- # display_name: Gemma 3n E4B IT (Instruct)
75
- #
76
- # # While the raw parameter count of this model is 8B, the architecture design allows the model to be run with a memory footprint comparable to a traditional 4B model by offloading low-utilization matrices from the accelerator.
77
- # #num_of_parameters: 8B
78
- # num_of_parameters: 4B
79
-
 
61
  display_name: DeepSeek V3
62
  num_of_parameters: 685B
63
 
64
+ # Gemma 3n models are not available on the Inference Providers yet
65
+ #- model_id: google/gemma-3n-E2B-it
66
+ # display_name: Gemma 3n E2B IT (Instruct)
67
+ #
68
+ # # While the raw parameter count of this model is 6B, the architecture design allows the model to be run with a memory footprint comparable to a traditional 2B model by offloading low-utilization matrices from the accelerator.
69
+ # #num_of_parameters: 6B
70
+ # num_of_parameters: 2B
71
+ #
72
+ #- model_id: google/gemma-3n-E4B-it
73
+ # display_name: Gemma 3n E4B IT (Instruct)
74
+ #
75
+ # # While the raw parameter count of this model is 8B, the architecture design allows the model to be run with a memory footprint comparable to a traditional 4B model by offloading low-utilization matrices from the accelerator.
76
+ # #num_of_parameters: 8B
77
+ # num_of_parameters: 4B
 
 
build/web/flutter_bootstrap.js CHANGED
@@ -38,6 +38,6 @@ _flutter.buildConfig = {"engineRevision":"1c9c20e7c3dd48c66f400a24d48ea806b4ab31
38
 
39
  _flutter.loader.load({
40
  serviceWorkerSettings: {
41
- serviceWorkerVersion: "1152030249"
42
  }
43
  });
 
38
 
39
  _flutter.loader.load({
40
  serviceWorkerSettings: {
41
+ serviceWorkerVersion: "3956178763"
42
  }
43
  });
build/web/flutter_service_worker.js CHANGED
@@ -3,7 +3,7 @@ const MANIFEST = 'flutter-app-manifest';
3
  const TEMP = 'flutter-temp-cache';
4
  const CACHE_NAME = 'flutter-app-cache';
5
 
6
- const RESOURCES = {"flutter_bootstrap.js": "4293255503dbf79f2be0ef00f170c7b9",
7
  "version.json": "68350cac7987de2728345c72918dd067",
8
  "tikslop.png": "570e1db759046e2d224fef729983634e",
9
  "index.html": "3a7029b3672560e7938aab6fa4d30a46",
 
3
  const TEMP = 'flutter-temp-cache';
4
  const CACHE_NAME = 'flutter-app-cache';
5
 
6
+ const RESOURCES = {"flutter_bootstrap.js": "94d9727eb9f377d038a609673712a827",
7
  "version.json": "68350cac7987de2728345c72918dd067",
8
  "tikslop.png": "570e1db759046e2d224fef729983634e",
9
  "index.html": "3a7029b3672560e7938aab6fa4d30a46",
build/web/index.html CHANGED
@@ -156,7 +156,7 @@
156
  </script>
157
 
158
  <!-- Add version parameter for cache busting -->
159
- <script src="flutter_bootstrap.js?v=1753272934" async></script>
160
 
161
  <!-- Add cache busting script -->
162
  <script>
 
156
  </script>
157
 
158
  <!-- Add version parameter for cache busting -->
159
+ <script src="flutter_bootstrap.js?v=1753273001" async></script>
160
 
161
  <!-- Add cache busting script -->
162
  <script>
lib/models/curated_model.dart CHANGED
@@ -90,14 +90,14 @@ class CuratedModel {
90
  /// Default models in case asset loading fails
91
  static const List<CuratedModel> _defaultModels = [
92
  CuratedModel(
93
- modelId: 'meta-llama/Llama-3.2-3B-Instruct',
94
- displayName: 'Llama 3.2 3B Instruct',
95
- numOfParameters: '3B',
96
  ),
97
  CuratedModel(
98
- modelId: 'HuggingFaceTB/SmolLM3-3B',
99
- displayName: 'SmolLM3 3B',
100
- numOfParameters: '3B',
101
  ),
102
  ];
103
 
 
90
  /// Default models in case asset loading fails
91
  static const List<CuratedModel> _defaultModels = [
92
  CuratedModel(
93
+ modelId: ' Qwen/Qwen3-0.6B',
94
+ displayName: ' Qwen/Qwen 0.6B',
95
+ numOfParameters: '0.6B',
96
  ),
97
  CuratedModel(
98
+ modelId: 'Unbabel/Tower-Plus-2B',
99
+ displayName: 'Tower-Plus-2B',
100
+ numOfParameters: '2B',
101
  ),
102
  ];
103