Skip to content

Commit 61a8bef

Browse files
[docs] Multimodal Endpoints Issue (#1700)
Signed-off-by: Pranav Singh <[email protected]> Co-authored-by: Ying Hu <[email protected]>
1 parent 4582e53 commit 61a8bef

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

MultimodalQnA/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ In the below, we provide a table that describes for each microservice component
9090
| MicroService | Open Source Project | HW | Port | Endpoint |
9191
| ------------ | --------------------- | ----- | ---- | ----------------------------------------------------------- |
9292
| Embedding | Langchain | Xeon | 6000 | /v1/embeddings |
93-
| Retriever | Langchain, Redis | Xeon | 7000 | /v1/multimodal_retrieval |
93+
| Retriever | Langchain, Redis | Xeon | 7000 | /v1/retrieval |
9494
| LVM | Langchain, TGI | Gaudi | 9399 | /v1/lvm |
9595
| Dataprep | Redis, Langchain, TGI | Gaudi | 6007 | /v1/generate_transcripts, /v1/generate_captions, /v1/ingest |
9696

MultimodalQnA/docker_compose/amd/gpu/rocm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ curl http://${host_ip}:$MM_EMBEDDING_PORT_MICROSERVICE/v1/embeddings \
178178

179179
```bash
180180
export your_embedding=$(python3 -c "import random; embedding = [random.uniform(-1, 1) for _ in range(512)]; print(embedding)")
181-
curl http://${host_ip}:7000/v1/multimodal_retrieval \
181+
curl http://${host_ip}:7000/v1/retrieval \
182182
-X POST \
183183
-H "Content-Type: application/json" \
184184
-d "{\"text\":\"test\",\"embedding\":${your_embedding}}"

MultimodalQnA/docker_compose/intel/cpu/xeon/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ curl http://${host_ip}:$MM_EMBEDDING_PORT_MICROSERVICE/v1/embeddings \
264264

265265
```bash
266266
export your_embedding=$(python3 -c "import random; embedding = [random.uniform(-1, 1) for _ in range(512)]; print(embedding)")
267-
curl http://${host_ip}:${REDIS_RETRIEVER_PORT}/v1/multimodal_retrieval \
267+
curl http://${host_ip}:${REDIS_RETRIEVER_PORT}/v1/retrieval \
268268
-X POST \
269269
-H "Content-Type: application/json" \
270270
-d "{\"text\":\"test\",\"embedding\":${your_embedding}}"

MultimodalQnA/docker_compose/intel/hpu/gaudi/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ curl http://${host_ip}:$MM_EMBEDDING_PORT_MICROSERVICE/v1/embeddings \
210210

211211
```bash
212212
export your_embedding=$(python3 -c "import random; embedding = [random.uniform(-1, 1) for _ in range(512)]; print(embedding)")
213-
curl http://${host_ip}:7000/v1/multimodal_retrieval \
213+
curl http://${host_ip}:7000/v1/retrieval \
214214
-X POST \
215215
-H "Content-Type: application/json" \
216216
-d "{\"text\":\"test\",\"embedding\":${your_embedding}}"
@@ -336,6 +336,7 @@ To delete all uploaded files along with data indexed with `$INDEX_NAME` in REDIS
336336
```bash
337337
curl -X POST \
338338
-H "Content-Type: application/json" \
339+
-d '{"file_path": "all"}' \
339340
${DATAPREP_DELETE_FILE_ENDPOINT}
340341
```
341342

0 commit comments

Comments
 (0)