Skip to content

Commit

Permalink
Update models used for embeddings in the weaviate example (#3594)
Browse files Browse the repository at this point in the history
Use text-embedding-ada-002 because it [outperforms all other
models](https://openai.com/blog/new-and-improved-embedding-model).
  • Loading branch information
hsm207 authored and vowelparrot committed Apr 28, 2023
1 parent 453e4d2 commit 6104cf4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/modules/indexes/vectorstores/examples/weaviate.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@
" \"vectorizer\": \"text2vec-openai\",\n",
" \"moduleConfig\": {\n",
" \"text2vec-openai\": {\n",
" \"model\": \"babbage\",\n",
" \"model\": \"ada\",\n",
" \"modelVersion\": \"002\",\n",
" \"type\": \"text\"\n",
" }\n",
" },\n",
Expand Down

0 comments on commit 6104cf4

Please sign in to comment.