Chang She
098e397cf0
feat: LocalTable for vectordb now supports filters without vector search ( #693 )
...
Note this currently the filter/where is only implemented for LocalTable
so that it requires an explicit cast to "enable" (see new unit test).
The alternative is to add it to the Table interface, but since it's not
available on RemoteTable this may cause some user experience issues.
2023-12-13 22:59:01 -08:00
Bert
63ee8fa6a1
Update in Node & Rust ( #696 )
...
Co-authored-by: Will Jones <willjones127@gmail.com >
2023-12-13 14:53:06 -05:00
Bert
5ca98c326f
feat: added dataset stats api to node ( #604 )
2023-10-26 17:00:48 -04:00
Will Jones
db7bdefe77
feat: cleanup and compaction ( #518 )
...
#488
2023-10-11 12:49:12 -07:00
Rob Meng
30f5bc5865
expose awsRegion to be configurable ( #441 )
2023-08-22 16:00:14 -04:00
gsilvestrin
2737315cb2
feat(node): Create empty tables / Arrow Tables ( #399 )
...
- Supports creating an empty table as long as an Arrow Schema is provided
- Supports creating a table from an Arrow Table (can be passed as data)
- Simplified some Arrow code in the TS/FFI side
- removed createTableArrow method, it was never documented / tested.
2023-08-22 10:57:45 -07:00
Rob Meng
d52422603c
use a lambda function to hide the value of credentials when printing a connection/table ( #438 )
...
Previously when logging the `LocalConnection` and `LocalTable` classes,
we would expose the aws creds inside them. This PR changes the stored
creds to a anonymous function to hide the creds
2023-08-21 23:06:44 -04:00
Rob Meng
f0bcb26f32
Upgrade lance and pass AWS creds when opening a table ( #426 )
2023-08-14 18:22:02 -04:00
gsilvestrin
f227658e08
fix(node) Remove mpsc from JS SDK ( #407 )
...
- Callers / SDKs are responsible for keeping track of the last version of the Table
- Remove the mpsc from Table and make all Table operations non-blocking
2023-08-08 10:35:43 -07:00
gsilvestrin
b69b1e3ec8
fix(node) Unit tests hangs and don't exit ( #396 )
2023-08-04 20:18:23 -07:00
gsilvestrin
80a32be121
bugfix(node): make WriteMode optional when specifying embeddings ( #336 )
2023-07-24 11:26:43 -07:00
Rob Meng
a636bb1075
add support for host override ( #335 )
2023-07-18 21:21:39 -04:00
Lei Xu
980f910f50
[Node] initial support of nodejs remote sdk ( #333 )
2023-07-18 16:15:27 -07:00
Will Jones
3537afb2c3
docs: show how to delete rows in user guide ( #309 )
...
Closes #265
2023-07-18 08:19:48 -07:00
gsilvestrin
826dc90151
feat(node): add option object to connect method ( #286 )
2023-07-13 11:03:48 -07:00
Rob Meng
98b12caa06
export create table with aws credentials ( #282 )
2023-07-11 17:21:10 -04:00
Rob Meng
ace6aa883a
Upgrade lance to 0.5.5, and plumb thru new features from the upgrade ( #279 )
...
* upgrade
* fixes for the upgrade
* allow JS users to pass custom AWS credentials
2023-07-11 16:33:39 -04:00
Lei Xu
dc7146b2cb
[Node] Expose IVF PQ config ( #258 )
2023-07-05 19:54:21 -07:00
Leon Yee
9600a38ff0
[docs] fixed javascript docs for overloaded functions ( #247 )
...
Solves #244 :

Problem was function overloading in the interface caused some weird
`typedoc` formatting, so breaking it apart into methods fixed the issue.
Also regenerated and updated javascript docs
---------
Co-authored-by: Tevin Wang <tevin@cmu.edu >
2023-07-04 13:07:34 -07:00
Lei Xu
fc725c99f0
[Node] Create Table with WriteMode ( #246 )
...
Support `createTable(name, data, mode?)` to be consistent with Python.
Closes #242
2023-07-03 17:04:21 -07:00
Lei Xu
051c03c3c9
Add dot product support ( #239 )
...
Closes #207
2023-06-29 10:32:01 -07:00
Rob Meng
01abf82808
Refactor TS client to use interface + implementation pattern ( #226 )
...
## What?
* Changed `Connection` and `Table` to interfaces
* Renamed original `Connection` and `Table` to `LocalConnection` and
`LocalTable`
2023-06-27 21:45:01 -04:00
Lei Xu
c68c236f17
[Js] Create index with replace flag ( #229 )
2023-06-26 18:38:20 -07:00
Lei Xu
c14ad91df0
[Node] drop table api ( #221 )
...
Provide `drop_table` in rust and node. Closes #86
2023-06-23 19:58:37 -07:00
Will Jones
ad48242ffb
feat: support for deletion ( #219 )
...
Also upgrades Arrow and Lance.
2023-06-23 18:09:07 -07:00
gsilvestrin
78de8f5782
feat(node): add Table.countRows() ( #185 )
2023-06-15 14:35:54 -07:00
gsilvestrin
f65d85efcc
feat(node): add where method to query builder ( #183 )
...
Closes #181
2023-06-14 10:54:43 -07:00
gsilvestrin
f37994b72a
[nodejs] deprecated created_index in favor of createIndex. ( #145 )
2023-06-03 11:05:35 -07:00
gsilvestrin
d0c47e3838
added projection api for nodejs ( #140 )
2023-06-03 10:34:08 -07:00
gsilvestrin
3e14b357e7
add openai embedding function to nodejs client ( #107 )
...
- openai is an optional dependency for lancedb
- added an example to show how to use it
2023-06-01 10:25:00 -07:00
Lei Xu
306ada5cb8
Support S3 and GCS from typescript SDK ( #106 )
2023-05-30 21:32:17 -07:00
gsilvestrin
d3aa8bfbc5
add embedding functions to the nodejs client ( #95 )
2023-05-26 18:09:20 -07:00
gsilvestrin
f923cfe47f
add create index to nodejs client ( #89 )
2023-05-24 16:45:58 -06:00
gsilvestrin
06cb7b6458
add query params to to nodejs client ( #87 )
2023-05-24 15:48:31 -06:00
gsilvestrin
e28fe7b468
nodejs append records api ( #85 )
2023-05-18 15:13:57 -07:00
gsilvestrin
61b9479bd9
JavaScript client initial linux support ( #84 )
2023-05-16 17:04:06 -07:00
gsilvestrin
961d892c89
Added TypeScript example ( #82 )
2023-05-16 13:40:52 -07:00
gsilvestrin
395c7460d5
nodejs create_table ( #75 )
2023-05-15 19:00:17 -07:00
gsilvestrin
648f8123ca
Exposing limit parameter ( #73 )
2023-05-11 09:12:06 -07:00
gsilvestrin
38e6efc185
JavaScript / Node.js library for LanceDB
...
- Core rust library
- ffi bridge that exposes rust functionality to javascript
- npm package that provides a TypeScript / JavaScript library
- limitations: it only supports reading for now
2023-05-10 12:51:49 -07:00