Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in notebooks #108

Merged
merged 1 commit into from
May 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions quickstarts/rest/Embeddings_REST.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
},
"source": [
"## Set the output dimensionality\n",
"If you're using `text-embeddings-004`, you can set the `output_dimensionality` paramater to create smaller embeddings.\n",
"If you're using `text-embeddings-004`, you can set the `output_dimensionality` parameter to create smaller embeddings.\n",
"\n",
"* `output_dimensionality` truncates the embedding (e.g., `[1, 3, 5]` becomes `[1,3]` when `output_dimensionality=2`).\n"
]
Expand Down Expand Up @@ -277,7 +277,7 @@
"\n",
"* `TASK_TYPE_UNSPECIFIED`: If you do not set the value, it will default to retrieval_query.\n",
"* `RETRIEVAL_QUERY` : The given text is a query in a search/retrieval setting.\n",
"* `RETRIEVAL_DOCUMENT`: The given text is a document from athe corpus being searched.\n",
"* `RETRIEVAL_DOCUMENT`: The given text is a document from the corpus being searched.\n",
"* `SEMANTIC_SIMILARITY`: The given text will be used for Semantic Textual Similarity (STS).\n",
"* `CLASSIFICATION`: The given text will be classified.\n",
"* `CLUSTERING`: The embeddings will be used for clustering.\n"
Expand Down
Loading