diff --git a/docs/src/fts.md b/docs/src/fts.md index 58dea5d7..dafcb055 100644 --- a/docs/src/fts.md +++ b/docs/src/fts.md @@ -6,17 +6,19 @@ to make this available for JS as well. ## Installation -To use full text search, you must install optional dependency tantivy-py: +To use full text search, you must install the dependency `tantivy-py`: -# tantivy 0.19.2 -pip install tantivy@git+https://github.com/quickwit-oss/tantivy-py#164adc87e1a033117001cf70e38c82a53014d985 +# tantivy 0.20.1 +```sh +pip install tantivy==0.20.1 +``` ## Quickstart Assume: 1. `table` is a LanceDB Table -2. `text` is the name of the Table column that we want to index +2. `text` is the name of the `Table` column that we want to index For example,