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
If there's no collection found with the specified name in Qdrant, it will create one.
89
+
76
90
### Running the ingestion process
77
91
78
92
Let's now execute this process. First, you need to make sure you have Qdrant running locally and all setup. Run the following command in a terminal to start up Qdrant (**make sure you stopped the Qdrant container before!**):
@@ -81,18 +95,7 @@ Let's now execute this process. First, you need to make sure you have Qdrant run
81
95
docker compose up qdrant
82
96
```
83
97
84
-
This will start Qdrant locally. Make sure you can access the Qdrant dashboard at the URL http://localhost:6333/dashboard. Then, create a new collection named `kbindex` with the following cUrl command:
85
-
86
-
```bash
87
-
curl -X PUT 'http://localhost:6333/collections/kbindex' \
88
-
-H 'Content-Type: application/json' \
89
-
--data-raw '{
90
-
"vectors": {
91
-
"size": 384,
92
-
"distance": "Cosine"
93
-
}
94
-
}'
95
-
```
98
+
This will start Qdrant locally. Make sure you can access the Qdrant dashboard at the URL http://localhost:6333/dashboard.
Copy file name to clipboardExpand all lines: src/ingestion-java/src/main/java/ai/azure/openai/rag/workshop/ingestion/configuration/EmbeddingStoreProducer.java
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,13 @@ public EmbeddingStore<TextSegment> embeddingStore() throws URISyntaxException {
0 commit comments