Skip to content

Commit c998f78

Browse files
diberryCopilot
andcommitted
fix: flatten run tabs to DiskANN/QuantizedFlat (no nested OS tabs)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b7c9afc commit c998f78

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

articles/cosmos-db/quickstart-vector-store-python.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -313,25 +313,29 @@ The code uses your local developer authentication to access Azure Cosmos DB and
313313
314314
Use the `VECTOR_ALGORITHM` environment variable to select which vector index implementation to run. The variable controls which Azure Cosmos DB container the application connects to.
315315
316-
### [DiskANN - Linux/macOS](#tab/diskann-linux)
316+
### [DiskANN](#tab/tab-diskann)
317+
318+
Linux/macOS:
317319
318320
```bash
319321
VECTOR_ALGORITHM=diskann python -m src.vector_search
320322
```
321323
322-
### [DiskANN - Windows](#tab/diskann-windows)
324+
Windows:
323325
324326
```powershell
325327
$env:VECTOR_ALGORITHM="diskann"; python -m src.vector_search
326328
```
327329
328-
### [Quantized flat - Linux/macOS](#tab/quantizedflat-linux)
330+
### [Quantized flat](#tab/tab-quantizedflat)
331+
332+
Linux/macOS:
329333
330334
```bash
331335
VECTOR_ALGORITHM=quantizedflat python -m src.vector_search
332336
```
333337
334-
### [Quantized flat - Windows](#tab/quantizedflat-windows)
338+
Windows:
335339
336340
```powershell
337341
$env:VECTOR_ALGORITHM="quantizedflat"; python -m src.vector_search

0 commit comments

Comments
 (0)