[version] Update to 2.13.1

This commit is contained in:
Joshua Lochner 2024-01-03 12:59:13 +02:00
parent 81f1e5c320
commit e8d1236c11
6 changed files with 8 additions and 8 deletions

View File

@ -101,7 +101,7 @@ npm i @xenova/transformers
Alternatively, you can use it in vanilla JS, without any bundler, by using a CDN or static hosting. For example, using [ES Modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules), you can import the library with:
```html
<script type="module">
import { pipeline } from 'https://cdn.jsdelivr.net/npm/@xenova/transformers@2.13.0';
import { pipeline } from 'https://cdn.jsdelivr.net/npm/@xenova/transformers@2.13.1';
</script>
```
@ -134,7 +134,7 @@ Check out the Transformers.js [template](https://huggingface.co/new-space?templa
By default, Transformers.js uses [hosted pretrained models](https://huggingface.co/models?library=transformers.js) and [precompiled WASM binaries](https://cdn.jsdelivr.net/npm/@xenova/transformers@2.13.0/dist/), which should work out-of-the-box. You can customize this as follows:
By default, Transformers.js uses [hosted pretrained models](https://huggingface.co/models?library=transformers.js) and [precompiled WASM binaries](https://cdn.jsdelivr.net/npm/@xenova/transformers@2.13.1/dist/), which should work out-of-the-box. You can customize this as follows:
### Settings

View File

@ -7,6 +7,6 @@ npm i @xenova/transformers
Alternatively, you can use it in vanilla JS, without any bundler, by using a CDN or static hosting. For example, using [ES Modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules), you can import the library with:
```html
<script type="module">
import { pipeline } from 'https://cdn.jsdelivr.net/npm/@xenova/transformers@2.13.0';
import { pipeline } from 'https://cdn.jsdelivr.net/npm/@xenova/transformers@2.13.1';
</script>
```

View File

@ -1,6 +1,6 @@
By default, Transformers.js uses [hosted pretrained models](https://huggingface.co/models?library=transformers.js) and [precompiled WASM binaries](https://cdn.jsdelivr.net/npm/@xenova/transformers@2.13.0/dist/), which should work out-of-the-box. You can customize this as follows:
By default, Transformers.js uses [hosted pretrained models](https://huggingface.co/models?library=transformers.js) and [precompiled WASM binaries](https://cdn.jsdelivr.net/npm/@xenova/transformers@2.13.1/dist/), which should work out-of-the-box. You can customize this as follows:
### Settings

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@xenova/transformers",
"version": "2.13.0",
"version": "2.13.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@xenova/transformers",
"version": "2.13.0",
"version": "2.13.1",
"license": "Apache-2.0",
"dependencies": {
"@huggingface/jinja": "^0.1.0",

View File

@ -1,6 +1,6 @@
{
"name": "@xenova/transformers",
"version": "2.13.0",
"version": "2.13.1",
"description": "State-of-the-art Machine Learning for the web. Run 🤗 Transformers directly in your browser, with no need for a server!",
"main": "./src/transformers.js",
"types": "./types/transformers.d.ts",

View File

@ -29,7 +29,7 @@ import url from 'url';
import { ONNX } from './backends/onnx.js';
const { env: onnx_env } = ONNX;
const VERSION = '2.13.0';
const VERSION = '2.13.1';
// Check if various APIs are available (depends on environment)
const WEB_CACHE_AVAILABLE = typeof self !== 'undefined' && 'caches' in self;