Merge pull request #1 from RichmondAlake/main

Enhance Documentation and Visuals for Atlas Vector Search Index Creation
This commit is contained in:
Laurie Voss
2024-01-23 06:05:47 -08:00
committed by GitHub
3 changed files with 7 additions and 9 deletions
+7 -9
View File
@@ -196,16 +196,14 @@ Now under "database and collection" select `tiny_tweets_db` and within that sele
```json
{
"mappings": {
"dynamic": true,
"fields": {
"embedding": {
"dimensions": 1536,
"similarity": "cosine",
"type": "knnVector"
}
"fields": [
{
"numDimensions": 1536,
"path": "embedding",
"similarity": "cosine",
"type": "vector"
}
}
]
}
```
Binary file not shown.

Before

Width:  |  Height:  |  Size: 230 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 278 KiB

After

Width:  |  Height:  |  Size: 121 KiB