8 lines
214 B
Python
8 lines
214 B
Python
import cohere
|
|
from backend.config import Config
|
|
|
|
co = cohere.Client(Config.COHERE_API_KEY)
|
|
|
|
def get_embeddings(texts):
|
|
response = co.embed(texts=texts, model="embed-english-v3.0")
|
|
return response.embeddings |