Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
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 |
-
|
66 |
-
|
67 |
-
|
68 |
-
#
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
#
|
76 |
-
|
77 |
-
|
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: "
|
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": "
|
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=
|
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: '
|
94 |
-
displayName: '
|
95 |
-
numOfParameters: '
|
96 |
),
|
97 |
CuratedModel(
|
98 |
-
modelId: '
|
99 |
-
displayName: '
|
100 |
-
numOfParameters: '
|
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 |
|