You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -176,6 +176,14 @@ Now, import the data into the bucket you created earlier:
176
176
ls *_with_embedding.json | each { |it| open $it.name | wrap content | insert id $in.content._default.name } | doc upsert
177
177
```
178
178
179
+
While, in this workshop we are focused on creating a *vector search index*, you can also create a primary search index to enable full-text search on the data:
180
+
181
+
```bash
182
+
query "create primary index on name_of_your_bucket._default._default"
183
+
```
184
+
185
+
Make sure to replace the `name_of_your_bucket` with the name of your bucket you created.
186
+
179
187
Once this is done, you can perform a sanity check to ensure the documents were inserted by running a query to selectjust one:
0 commit comments