Huggingface.js documentation

Class: SafetensorParseError

Hugging Face's logo
Join the Hugging Face community

and get access to the augmented documentation experience

to get started

Class: SafetensorParseError

Thrown when a safetensors file or sharded index is malformed (bad header, invalid tensor entry, unsafe shard filename, …) rather than when fetching it fails, so callers can treat the failure as permanent — e.g. drop a cached parse result instead of keeping it for retry.

Hierarchy

  • Error

    SafetensorParseError

Constructors

constructor

new SafetensorParseError(message): SafetensorParseError

Parameters

NameType
messagestring

Returns

SafetensorParseError

Overrides

Error.constructor

Defined in

packages/hub/src/lib/parse-safetensors-metadata.ts:189

Properties

cause

Optional cause: unknown

Inherited from

Error.cause

Defined in

packages/doc-internal/node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.error.d.ts:26


message

message: string

Inherited from

Error.message

Defined in

packages/doc-internal/node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts:1077


name

name: string

Inherited from

Error.name

Defined in

packages/doc-internal/node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts:1076


stack

Optional stack: string

Inherited from

Error.stack

Defined in

packages/doc-internal/node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts:1078


prepareStackTrace

Static Optional prepareStackTrace: (err: Error, stackTraces: CallSite[]) => any

Optional override for formatting stack traces

See

https://v8.dev/docs/stack-trace-api#customizing-stack-traces

Type declaration

▸ (err, stackTraces): any

Parameters
NameType
errError
stackTracesCallSite[]
Returns

any

Inherited from

Error.prepareStackTrace

Defined in

node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/globals.d.ts:143


stackTraceLimit

Static stackTraceLimit: number

Inherited from

Error.stackTraceLimit

Defined in

node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/globals.d.ts:145

Methods

captureStackTrace

captureStackTrace(targetObject, constructorOpt?): void

Create .stack property on a target object

Parameters

NameType
targetObjectobject
constructorOpt?Function

Returns

void

Inherited from

Error.captureStackTrace

Defined in

node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/globals.d.ts:136

Update on GitHub