Skip to content

Commit

Permalink
Merge pull request #3 from mongodb-developer/post-local-updates
Browse files Browse the repository at this point in the history
Making things clearer
  • Loading branch information
ajosh0504 authored Oct 8, 2024
2 parents f2e6196 + b6a8710 commit df554b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/40-dev-env/1-dev-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To do this, choose one of the **Save a copy** options in the **File** menu.

That's it! You're ready for the lab!

## Local setup
## [Backup] Local setup

:::caution
Run the notebook locally ONLY IF Google Colab is not an option/doesn't work for you.
Expand Down
2 changes: 1 addition & 1 deletion docs/50-prepare-the-data/2-chunk-data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The answers for code blocks in this section are as follows:
<div>
```python
RecursiveCharacterTextSplitter.from_tiktoken_encoder(
encoding_name="cl100k_base", separators=separators, chunk_size=200, chunk_overlap=30
model_name="gpt-4", separators=separators, chunk_size=200, chunk_overlap=30
)
```
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/60-perform-semantic-search/1-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ To perform vector search on your data in MongoDB, you need to create a vector se
"type": "vector",
"path": "embedding",
"numDimensions": 1536,
"similarity": "euclidean | cosine | dotProduct"
"similarity": "cosine"
},
{
"type": "filter",
Expand Down

0 comments on commit df554b7

Please sign in to comment.