Files

12 lines
260 B
Python
Raw Permalink Normal View History

2026-05-12 19:40:31 +09:00
from neo4j_graphrag.embeddings import CohereEmbeddings
# set api key here on in the CO_API_KEY env var
api_key = None
embeder = CohereEmbeddings(
model="embed-english-v3.0",
api_key=api_key,
)
res = embeder.embed_query("my question")
print(res[:10])