Initial snapshot upload
Browse files- frontend/package.json +3 -1
- push_to_spaces.py +1 -1
- src/requirements.txt +2 -5
frontend/package.json
CHANGED
@@ -12,7 +12,9 @@
|
|
12 |
"lucide-react": "^0.523.0",
|
13 |
"next": "15.3.3",
|
14 |
"react": "^19.0.0",
|
15 |
-
"react-dom": "^19.0.0"
|
|
|
|
|
16 |
},
|
17 |
"devDependencies": {
|
18 |
"@eslint/eslintrc": "^3",
|
|
|
12 |
"lucide-react": "^0.523.0",
|
13 |
"next": "15.3.3",
|
14 |
"react": "^19.0.0",
|
15 |
+
"react-dom": "^19.0.0",
|
16 |
+
"react-i18next": "^13.0.0",
|
17 |
+
"i18next": "^23.0.0"
|
18 |
},
|
19 |
"devDependencies": {
|
20 |
"@eslint/eslintrc": "^3",
|
push_to_spaces.py
CHANGED
@@ -9,4 +9,4 @@ upload_folder(
|
|
9 |
repo_type="space", # Important: this tells HF it's a Space
|
10 |
commit_message="Initial snapshot upload",
|
11 |
|
12 |
-
)
|
|
|
9 |
repo_type="space", # Important: this tells HF it's a Space
|
10 |
commit_message="Initial snapshot upload",
|
11 |
|
12 |
+
)
|
src/requirements.txt
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
-
|
2 |
# Core
|
|
|
3 |
python-dotenv
|
4 |
numpy
|
5 |
scipy
|
@@ -14,15 +15,11 @@ uvicorn
|
|
14 |
# Optional: pretty printing, progress bars, etc.
|
15 |
tqdm
|
16 |
aenum
|
17 |
-
|
18 |
-
|
19 |
transformers
|
20 |
accelerate
|
21 |
bitsandbytes
|
22 |
flash-attn
|
23 |
wheel
|
24 |
-
|
25 |
wandb
|
26 |
-
|
27 |
# Pour compatibilité ancienne
|
28 |
protobuf<=3.20.3
|
|
|
1 |
+
|
2 |
# Core
|
3 |
+
torch
|
4 |
python-dotenv
|
5 |
numpy
|
6 |
scipy
|
|
|
15 |
# Optional: pretty printing, progress bars, etc.
|
16 |
tqdm
|
17 |
aenum
|
|
|
|
|
18 |
transformers
|
19 |
accelerate
|
20 |
bitsandbytes
|
21 |
flash-attn
|
22 |
wheel
|
|
|
23 |
wandb
|
|
|
24 |
# Pour compatibilité ancienne
|
25 |
protobuf<=3.20.3
|