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: docs/docs/getting_started/quickstart.md
+2-6Lines changed: 2 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,11 +54,7 @@ Create a new file `quickstart.py` and import the `cocoindex` library:
54
54
import cocoindex
55
55
```
56
56
57
-
Then we'll put the following pieces into the file:
58
-
59
-
* Define an indexing flow, which specifies a data flow to transform data from specified data source into a vector index.
60
-
* Define a query handler, which can be used to query the vector index.
61
-
* A main function, to interact with users and run queries using the query handler above.
57
+
Then we'll create the indexing flow.
62
58
63
59
### Step 2.1: Define the indexing flow
64
60
@@ -309,5 +305,5 @@ Next, you may want to:
309
305
310
306
* Learn about [CocoIndex Basics](../core/basics.md).
311
307
* Learn about other examples in the [examples](https://github.com/cocoindex-io/cocoindex/tree/main/examples) directory.
312
-
* The `text_embedding` example is this quickstart with some polishing (loading environment variables from `.env` file, extract pieces shared by the indexing flow and query handler into a function).
308
+
* The `text_embedding` example is this quickstart.
313
309
* Pick other examples to learn upon your interest.
0 commit comments