(docs) cohere embedding models

This commit is contained in:
ishaan-jaff
2023-11-02 10:35:46 -07:00
parent 8ea2270058
commit fdc88cc0ee
+13 -1
View File
@@ -54,4 +54,16 @@ response = embedding(
model="embed-english-v3.0",
input=["good morning from litellm", "this is another item"],
)
```
```
### Supported Embedding Models
| Model Name | Function Call |
|--------------------------|--------------------------------------------------------------|
| embed-english-v3.0 | `embedding(model="embed-english-v3.0", input=["good morning from litellm", "this is another item"])` |
| embed-english-light-v3.0 | `embedding(model="embed-english-light-v3.0", input=["good morning from litellm", "this is another item"])` |
| embed-multilingual-v3.0 | `embedding(model="embed-multilingual-v3.0", input=["good morning from litellm", "this is another item"])` |
| embed-multilingual-light-v3.0 | `embedding(model="embed-multilingual-light-v3.0", input=["good morning from litellm", "this is another item"])` |
| embed-english-v2.0 | `embedding(model="embed-english-v2.0", input=["good morning from litellm", "this is another item"])` |
| embed-english-light-v2.0 | `embedding(model="embed-english-light-v2.0", input=["good morning from litellm", "this is another item"])` |
| embed-multilingual-v2.0 | `embedding(model="embed-multilingual-v2.0", input=["good morning from litellm", "this is another item"])` |