mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-27 23:12:58 +00:00
1.4 KiB
1.4 KiB
@lancedb/lancedb • Docs
@lancedb/lancedb / MakeArrowTableOptions
Class: MakeArrowTableOptions
Options to control the makeArrowTable call.
Constructors
new MakeArrowTableOptions()
new MakeArrowTableOptions(
values?):MakeArrowTableOptions
Parameters
• values?: Partial<MakeArrowTableOptions>
Returns
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.
embeddingFunction?
optionalembeddingFunction:EmbeddingFunctionConfig
embeddings?
optionalembeddings:EmbeddingFunction<unknown,FunctionOptions>
schema?
optionalschema:SchemaLike
vectorColumns
vectorColumns:
Record<string,VectorColumnOptions>