Lance Release
2e115acb9a
Updating package-lock.json
2023-10-26 21:48:01 +00:00
Lance Release
27a638362d
Bump version: 0.3.4 → 0.3.5
v0.3.5
2023-10-26 21:47:44 +00:00
Bert
22a6695d7a
fix conv version ( #605 )
2023-10-26 17:44:11 -04:00
Lance Release
57eff82ee7
Updating package-lock.json
2023-10-26 21:03:07 +00:00
Lance Release
7732f7d41c
Bump version: 0.3.3 → 0.3.4
v0.3.4
2023-10-26 21:02:52 +00:00
Bert
5ca98c326f
feat: added dataset stats api to node ( #604 )
2023-10-26 17:00:48 -04:00
Bert
b55db397eb
feat: added data stats apis ( #596 )
2023-10-26 13:10:17 -04:00
Rob Meng
c04d72ac8a
expose remap index api ( #603 )
...
expose index remap options in `compact_files`
2023-10-25 22:10:37 -04:00
Rob Meng
28b02fb72a
feat: expose optimize index api ( #602 )
...
expose `optimize_index` api.
2023-10-25 19:40:23 -04:00
Lance Release
f3cf986777
[python] Bump version: 0.3.1 → 0.3.2
python-v0.3.2
2023-10-24 19:06:38 +00:00
Bert
c73fcc8898
update lance to 0.8.7 ( #598 )
2023-10-24 14:49:36 -04:00
Chang She
cd9debc3b7
fix(python): fix multiple embedding functions bug ( #597 )
...
Closes #594
The embedding functions are pydantic models so multiple instances with
the same parameters are considered ==, which means that if you have
multiple embedding columns it's possible for the embeddings to get
overwritten. Instead we use `is` instead of == to avoid this problem.
testing: modified unit test to include this case
2023-10-24 13:05:05 -04:00
Rob Meng
26a97ba997
feat: add checkout method to table to reuse existing store and connections ( #593 )
...
Prior to this PR, to get a new version of a table, we need to re-open
the table. This has a few downsides w.r.t. performance:
* Object store is recreated, which takes time and throws away existing
warm connections
* Commit handler is thrown aways as well, which also may contain warm
connections
2023-10-23 12:06:13 -04:00
Rob Meng
ce19fedb08
feat: include manifest files in mirrow store ( #589 )
2023-10-21 12:21:41 -04:00
Will Jones
14e8e48de2
Revert "[python] Bump version: 0.3.2 → 0.3.3"
...
This reverts commit c30faf6083 .
2023-10-20 17:52:49 -07:00
Will Jones
c30faf6083
[python] Bump version: 0.3.2 → 0.3.3
2023-10-20 17:30:00 -07:00
Ayush Chaurasia
64a4f025bb
[Docs]: Minor Fixes ( #587 )
...
* Filename typo
* Remove rick_morty csv as users won't really be able to use it.. We can
create a an executable colab and download it from a bucket or smth.
2023-10-20 16:14:35 +02:00
Ayush Chaurasia
6dc968e7d3
[Docs] Embeddings API: Add multi-lingual semantic search example ( #582 )
2023-10-20 18:40:49 +05:30
Ayush Chaurasia
06b5b69f1e
[Docs]Versioning docs ( #586 )
...
closes #564
---------
Co-authored-by: Chang She <chang@lancedb.com >
2023-10-20 18:40:16 +05:30
Lance Release
6bd3a838fc
Updating package-lock.json
2023-10-19 20:45:39 +00:00
Lance Release
f36fea8f20
Updating package-lock.json
2023-10-19 20:06:10 +00:00
Lance Release
0a30591729
Bump version: 0.3.2 → 0.3.3
v0.3.3
2023-10-19 20:05:57 +00:00
Chang She
0ed39b6146
chore: bump lance version in python/rust lancedb ( #584 )
...
To include latest v0.8.6
Co-authored-by: Chang She <chang@lancedb.com >
2023-10-19 13:05:12 -07:00
Ayush Chaurasia
a8c7f80073
[Docs] Update embedding function docs ( #581 )
2023-10-18 13:04:42 +05:30
Ayush Chaurasia
0293bbe142
[Python]Embeddings API refactor ( #580 )
...
Sets things up for this -> https://github.com/lancedb/lancedb/issues/579
- Just separates out the registry/ingestion code from the function
implementation code
- adds a `get_registry` util
- package name "open-clip" -> "open-clip-torch"
2023-10-17 22:32:19 -07:00
Ayush Chaurasia
7372656369
[Docs] Add posthog telemetry to docs ( #577 )
...
Allows creation of funnels and user journeys
2023-10-17 21:11:59 -07:00
QianZhu
d46bc5dd6e
list table pagination draft ( #574 )
2023-10-16 21:09:20 -07:00
Prashanth Rao
86efb11572
Add pyarrow date and timestamp type conversion from pydantic ( #576 )
2023-10-16 19:42:24 -07:00
Chang She
bb01ad5290
doc: fix broken link and add README ( #573 )
...
Fix broken link to embedding functions
testing: broken link was verified after local docs build to have been
repaired
---------
Co-authored-by: Chang She <chang@lancedb.com >
2023-10-16 16:13:07 -07:00
Lance Release
1b8cda0941
Updating package-lock.json
2023-10-16 16:10:07 +00:00
Lance Release
bc85a749a3
Updating package-lock.json
2023-10-16 15:12:15 +00:00
Lance Release
02c35d3457
Bump version: 0.3.1 → 0.3.2
v0.3.2
2023-10-16 15:11:57 +00:00
Rob Meng
345c136cfb
implement remote api calls for table mutation ( #567 )
...
Add more APIs to remote table for Node SDK
* `add` rows
* `overwrite` table with rows
* `create` table
This has been tested against dev stack
2023-10-16 11:07:58 -04:00
Rok Mihevc
043e388254
docs: show source of documented functions ( #569 )
2023-10-15 09:05:36 -07:00
Lei Xu
fe64fc4671
feat(python,js): deletion operation on remote tables ( #568 )
2023-10-14 15:47:19 -07:00
Rok Mihevc
6d66404506
docs: switch python examples to be row based ( #554 )
2023-10-14 14:07:43 -07:00
Lei Xu
eff94ecea8
chore: bump lance to 0.8.5 ( #561 )
...
Bump lance to 0.5.8
2023-10-14 12:38:43 -07:00
Ayush Chaurasia
7dfb555fea
[DOCS][PYTHON] Update embeddings API docs & Example ( #516 )
...
This PR adds an overview of embeddings docs:
- 2 ways to vectorize your data using lancedb - explicit & implicit
- explicit - manually vectorize your data using `wit_embedding` function
- Implicit - automatically vectorize your data as it comes by ingesting
your embedding function details as table metadata
- Multi-modal example w/ disappearing embedding function
2023-10-14 07:56:07 +05:30
Lance Release
f762a669e7
Updating package-lock.json
2023-10-13 22:27:48 +00:00
Lance Release
0bdc7140dd
Updating package-lock.json
2023-10-13 21:24:05 +00:00
Lance Release
8f6e955b24
Bump version: 0.3.0 → 0.3.1
v0.3.1
2023-10-13 21:23:54 +00:00
Lance Release
1096da09da
[python] Bump version: 0.3.0 → 0.3.1
python-v0.3.1
2023-10-13 21:23:47 +00:00
Ayush Chaurasia
683824f1e9
Add cohere embedding function ( #550 )
2023-10-13 16:27:34 +05:30
Will Jones
db7bdefe77
feat: cleanup and compaction ( #518 )
...
#488
2023-10-11 12:49:12 -07:00
Ayush Chaurasia
e41894b071
[Docs] Improve visibility of table ops ( #553 )
...
A little verbose, but better than being non-discoverable

2023-10-11 12:20:46 -07:00
Chang She
e1ae2bcbd8
feat: add to_list and to_pandas api's ( #556 )
...
Add `to_list` to return query results as list of python dict (so we're
not too pandas-centric). Closes #555
Add `to_pandas` API and add deprecation warning on `to_df`. Closes #545
Co-authored-by: Chang She <chang@lancedb.com >
2023-10-11 12:18:55 -07:00
Ankur Goyal
ababc3f8ec
Use query.limit(..) in README ( #543 )
...
If you run the README javascript example in typescript, it complains
that the type of limit is a function and cannot be set to a number.
2023-10-11 11:54:14 -07:00
Ayush Chaurasia
a1377afcaa
feat: telemetry, error tracking, CLI & config manager ( #538 )
...
Co-authored-by: Lance Release <lance-dev@lancedb.com >
Co-authored-by: Rob Meng <rob.xu.meng@gmail.com >
Co-authored-by: Will Jones <willjones127@gmail.com >
Co-authored-by: Chang She <759245+changhiskhan@users.noreply.github.com >
Co-authored-by: rmeng <rob@lancedb.com >
Co-authored-by: Chang She <chang@lancedb.com >
Co-authored-by: Rok Mihevc <rok@mihevc.org >
2023-10-08 23:11:39 +05:30
Lei Xu
a26c8f3316
feat: use GPU for index creation. ( #540 )
...
Bump lance to 0.8.3 to include GPU training
---------
Co-authored-by: Rob Meng <rob.xu.meng@gmail.com >
2023-10-05 20:49:00 -07:00
Josh Wein
88d8d7249e
Typo cleanup ( #539 )
2023-10-05 23:07:28 -04:00