Skip to content

Commit

Permalink
Updating text similarity model to text-embedding-ada-002 model
Browse files Browse the repository at this point in the history
Updating text similarity model to text-embedding-ada-002 model, since all the other embeddings model will be retired in 2024
  • Loading branch information
carlotta94c authored Dec 1, 2023
1 parent 341afd4 commit b8156f1
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions 07-building-chat-applications/notebook-azure-openai.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -649,15 +649,14 @@
}
},
"source": [
"### Model Taxonomy - Choosing a similarity model\n",
"Let's choose a similarity model, using the most powerful model \n",
"### Model Taxonomy - Choosing an embedding model\n",
"\n",
"**Model taxonomy**: {family} - {capability} - {input-type} - {identifier} \n",
"\n",
"{family} --> text-similarity (general text GPT-3 model) \n",
"{capability} --> davinci (curie is second most powerful in ada-babbage-curie-davinci family) \n",
"{input-type} --> n/a (only specified for search models) \n",
"{identifier} --> 001 (version 001) \n",
"{family} --> text-embedding (embeddings family) \n",
"{capability} --> ada (all the other embedding models will be retired in 2024) \n",
"{input-type} --> n/a (only specified for search models) \n",
"{identifier} --> 002 (version 002) \n",
"\n",
"model = 'text-embedding-ada-002'"
]
Expand Down

0 comments on commit b8156f1

Please sign in to comment.