@huggingface/tasks 0.10.12 → 0.10.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -5948,7 +5948,7 @@ LLAMA_CURL=1 make
5948
5948
  # Load and run the model
5949
5949
  ./main \\
5950
5950
  --hf-repo "${model.id}" \\
5951
- -m file.gguf \\
5951
+ -m {{GGUF_FILE}} \\
5952
5952
  -p "I believe the meaning of life is" \\
5953
5953
  -n 128`
5954
5954
  ];
package/dist/index.js CHANGED
@@ -5909,7 +5909,7 @@ LLAMA_CURL=1 make
5909
5909
  # Load and run the model
5910
5910
  ./main \\
5911
5911
  --hf-repo "${model.id}" \\
5912
- -m file.gguf \\
5912
+ -m {{GGUF_FILE}} \\
5913
5913
  -p "I believe the meaning of life is" \\
5914
5914
  -n 128`
5915
5915
  ];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@huggingface/tasks",
3
3
  "packageManager": "pnpm@8.10.5",
4
- "version": "0.10.12",
4
+ "version": "0.10.13",
5
5
  "description": "List of ML tasks for huggingface.co/tasks",
6
6
  "repository": "https://github.com/huggingface/huggingface.js.git",
7
7
  "publishConfig": {
package/src/local-apps.ts CHANGED
@@ -65,7 +65,7 @@ LLAMA_CURL=1 make
65
65
  # Load and run the model
66
66
  ./main \\
67
67
  --hf-repo "${model.id}" \\
68
- -m file.gguf \\
68
+ -m {{GGUF_FILE}} \\
69
69
  -p "I believe the meaning of life is" \\
70
70
  -n 128`,
71
71
  ];