diff --git a/output/schema/schema.json b/output/schema/schema.json index 3b7a446e37..d5958827d2 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -145797,7 +145797,7 @@ } } ], - "specLocation": "inference/_types/Results.ts#L91-L96" + "specLocation": "inference/_types/Results.ts#L92-L97" }, { "kind": "type_alias", @@ -145947,6 +145947,20 @@ } } }, + { + "name": "text_embedding_bits", + "required": false, + "type": { + "kind": "array_of", + "value": { + "kind": "instance_of", + "type": { + "name": "TextEmbeddingByteResult", + "namespace": "inference._types" + } + } + } + }, { "name": "text_embedding", "required": false, @@ -146004,7 +146018,7 @@ } } ], - "specLocation": "inference/_types/Results.ts#L79-L89", + "specLocation": "inference/_types/Results.ts#L79-L90", "variants": { "kind": "container" } diff --git a/output/typescript/types.ts b/output/typescript/types.ts index c9453d8e8d..71c43214e0 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -12998,6 +12998,7 @@ export interface InferenceInferenceEndpointInfo extends InferenceInferenceEndpoi export interface InferenceInferenceResult { text_embedding_bytes?: InferenceTextEmbeddingByteResult[] + text_embedding_bits?: InferenceTextEmbeddingByteResult[] text_embedding?: InferenceTextEmbeddingResult[] sparse_embedding?: InferenceSparseEmbeddingResult[] completion?: InferenceCompletionResult[] diff --git a/specification/inference/_types/Results.ts b/specification/inference/_types/Results.ts index 1a35289bab..54a5ddda9d 100644 --- a/specification/inference/_types/Results.ts +++ b/specification/inference/_types/Results.ts @@ -82,6 +82,7 @@ export class RankedDocument { */ export class InferenceResult { text_embedding_bytes?: Array + text_embedding_bits?: Array text_embedding?: Array sparse_embedding?: Array completion?: Array