Skip to content

Commit 32ddc78

Browse files
authored
Merge branch 'main' into dani/hf-clarifai-provider
2 parents ae7b0e6 + 676466b commit 32ddc78

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ You can run our packages with vanilla JS, without any bundler, by using a CDN or
9898

9999
```html
100100
<script type="module">
101-
import { InferenceClient } from 'https://cdn.jsdelivr.net/npm/@huggingface/inference@4.9.0/+esm';
102-
import { createRepo, commit, deleteRepo, listFiles } from "https://cdn.jsdelivr.net/npm/@huggingface/[email protected].9/+esm";
101+
import { InferenceClient } from 'https://cdn.jsdelivr.net/npm/@huggingface/inference@4.10.0/+esm';
102+
import { createRepo, commit, deleteRepo, listFiles } from "https://cdn.jsdelivr.net/npm/@huggingface/[email protected].10/+esm";
103103
</script>
104104
```
105105

packages/hub/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@huggingface/hub",
33
"packageManager": "[email protected]",
4-
"version": "2.6.9",
4+
"version": "2.6.10",
55
"description": "Utilities to interact with the Hugging Face hub",
66
"repository": "https://github.com/huggingface/huggingface.js.git",
77
"publishConfig": {

packages/hub/src/utils/createXorbs.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ export async function* createXorbs(
274274
bytesSinceLastProgressEvent += chunk.length;
275275

276276
// Collect metadata for building representation at the end
277+
fileChunks.push({ hash: chunk.hash, length: chunk.length });
277278
chunkMetadata.push({
278279
xorbId: chunkXorbId,
279280
chunkIndex: chunkIndex,

packages/inference/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@huggingface/inference",
3-
"version": "4.9.0",
3+
"version": "4.10.0",
44
"packageManager": "[email protected]",
55
"license": "MIT",
66
"author": "Hugging Face and Tim Mikeladze <[email protected]>",

packages/inference/src/package.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Generated file from package.json. Issues importing JSON directly when publishing on commonjs/ESM - see https://github.com/microsoft/TypeScript/issues/51783
2-
export const PACKAGE_VERSION = "4.9.0";
2+
export const PACKAGE_VERSION = "4.10.0";
33
export const PACKAGE_NAME = "@huggingface/inference";

packages/tasks/src/hardware.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export const SKUS = {
176176
},
177177
"RTX 4090D": {
178178
tflops: 79.49,
179-
memory: [24],
179+
memory: [24, 48],
180180
},
181181
"RTX 4090 Mobile": {
182182
tflops: 32.98,

0 commit comments

Comments
 (0)