diff --git a/docs/components/embedding-models.mdx b/docs/components/embedding-models.mdx index d41e1145..ef928913 100644 --- a/docs/components/embedding-models.mdx +++ b/docs/components/embedding-models.mdx @@ -40,7 +40,27 @@ app.query("What is OpenAI?") embedder: provider: openai config: - model: 'text-embedding-ada-002' + model: 'text-embedding-3-small' +``` + + + +* OpenAI announced two new embedding models: `text-embedding-3-small` and `text-embedding-3-large`. Embedchain supports both these models. Below you can find YAML config for both: + + + +```yaml text-embedding-3-small.yaml +embedder: + provider: openai + config: + model: 'text-embedding-3-small' +``` + +```yaml text-embedding-3-large.yaml +embedder: + provider: openai + config: + model: 'text-embedding-3-large' ```