Skip to content

vectordb / Exports / MakeArrowTableOptions

Class: MakeArrowTableOptions

Options to control the makeArrowTable call.

Table of contents

Constructors

Properties

Constructors

constructor

β€’ new MakeArrowTableOptions(values?)

Parameters

Name Type
values? Partial\<MakeArrowTableOptions>

Defined in

arrow.ts:98

Properties

dictionaryEncodeStrings

β€’ dictionaryEncodeStrings: boolean = false

If true then string columns will be encoded with dictionary encoding

Set this to true if your string columns tend to repeat the same values often. For more precise control use the schema property to specify the data type for individual columns.

If schema is provided then this property is ignored.

Defined in

arrow.ts:96


embeddings

β€’ Optional embeddings: EmbeddingFunction\<any>

Defined in

arrow.ts:85


schema

β€’ Optional schema: Schema\<any>

Defined in

arrow.ts:63


vectorColumns

β€’ vectorColumns: Record\<string, VectorColumnOptions>

Defined in

arrow.ts:81