[**@lancedb/lancedb**](../../../README.md) • **Docs** *** [@lancedb/lancedb](../../../globals.md) / [embedding](../README.md) / TextEmbeddingFunction # Class: `abstract` TextEmbeddingFunction<M> an abstract class for implementing embedding functions that take text as input ## Extends - [`EmbeddingFunction`](EmbeddingFunction.md)<`string`, `M`> ## Type Parameters • **M** *extends* [`FunctionOptions`](../interfaces/FunctionOptions.md) = [`FunctionOptions`](../interfaces/FunctionOptions.md) ## Constructors ### new TextEmbeddingFunction() ```ts new TextEmbeddingFunction(): TextEmbeddingFunction ``` #### Returns [`TextEmbeddingFunction`](TextEmbeddingFunction.md)<`M`> #### Inherited from [`EmbeddingFunction`](EmbeddingFunction.md).[`constructor`](EmbeddingFunction.md#constructors) ## Methods ### computeQueryEmbeddings() ```ts computeQueryEmbeddings(data): Promise ``` Compute the embeddings for a single query #### Parameters * **data**: `string` #### Returns `Promise`<`number`[] \| `Float32Array` \| `Float64Array`> #### Overrides [`EmbeddingFunction`](EmbeddingFunction.md).[`computeQueryEmbeddings`](EmbeddingFunction.md#computequeryembeddings) *** ### computeSourceEmbeddings() ```ts computeSourceEmbeddings(data): Promise ``` Creates a vector representation for the given values. #### Parameters * **data**: `string`[] #### Returns `Promise`<`number`[][] \| `Float32Array`[] \| `Float64Array`[]> #### Overrides [`EmbeddingFunction`](EmbeddingFunction.md).[`computeSourceEmbeddings`](EmbeddingFunction.md#computesourceembeddings) *** ### embeddingDataType() ```ts embeddingDataType(): Float ``` The datatype of the embeddings #### Returns `Float`<`Floats`> #### Overrides [`EmbeddingFunction`](EmbeddingFunction.md).[`embeddingDataType`](EmbeddingFunction.md#embeddingdatatype) *** ### generateEmbeddings() ```ts abstract generateEmbeddings(texts, ...args): Promise ``` #### Parameters * **texts**: `string`[] * ...**args**: `any`[] #### Returns `Promise`<`number`[][] \| `Float32Array`[] \| `Float64Array`[]> *** ### init()? ```ts optional init(): Promise ``` #### Returns `Promise`<`void`> #### Inherited from [`EmbeddingFunction`](EmbeddingFunction.md).[`init`](EmbeddingFunction.md#init) *** ### ndims() ```ts ndims(): undefined | number ``` The number of dimensions of the embeddings #### Returns `undefined` \| `number` #### Inherited from [`EmbeddingFunction`](EmbeddingFunction.md).[`ndims`](EmbeddingFunction.md#ndims) *** ### sourceField() ```ts sourceField(): [DataType, Map>] ``` sourceField is used in combination with `LanceSchema` to provide a declarative data model #### Returns [`DataType`<`Type`, `any`>, `Map`<`string`, [`EmbeddingFunction`](EmbeddingFunction.md)<`any`, [`FunctionOptions`](../interfaces/FunctionOptions.md)>>] #### See [LanceSchema](../functions/LanceSchema.md) #### Overrides [`EmbeddingFunction`](EmbeddingFunction.md).[`sourceField`](EmbeddingFunction.md#sourcefield) *** ### toJSON() ```ts abstract toJSON(): Partial ``` Convert the embedding function to a JSON object It is used to serialize the embedding function to the schema It's important that any object returned by this method contains all the necessary information to recreate the embedding function It should return the same object that was passed to the constructor If it does not, the embedding function will not be able to be recreated, or could be recreated incorrectly #### Returns `Partial`<`M`> #### Example ```ts class MyEmbeddingFunction extends EmbeddingFunction { constructor(options: {model: string, timeout: number}) { super(); this.model = options.model; this.timeout = options.timeout; } toJSON() { return { model: this.model, timeout: this.timeout, }; } ``` #### Inherited from [`EmbeddingFunction`](EmbeddingFunction.md).[`toJSON`](EmbeddingFunction.md#tojson) *** ### vectorField() ```ts vectorField(optionsOrDatatype?): [DataType, Map>] ``` vectorField is used in combination with `LanceSchema` to provide a declarative data model #### Parameters * **optionsOrDatatype?**: `DataType`<`Type`, `any`> \| `Partial`<[`FieldOptions`](../interfaces/FieldOptions.md)<`DataType`<`Type`, `any`>>> The options for the field #### Returns [`DataType`<`Type`, `any`>, `Map`<`string`, [`EmbeddingFunction`](EmbeddingFunction.md)<`any`, [`FunctionOptions`](../interfaces/FunctionOptions.md)>>] #### See [LanceSchema](../functions/LanceSchema.md) #### Inherited from [`EmbeddingFunction`](EmbeddingFunction.md).[`vectorField`](EmbeddingFunction.md#vectorfield)