Skip to main content
import cohere
import dokumetry

co = cohere.Client("YOUR_COHERE_API_KEY")

# Pass the above `co` object along with your Doku Ingester URL and API key and this will make sure that all Cohere calls are automatically tracked.
dokumetry.init(llm=co, doku_url="YOUR_DOKU_INGESTER_URL", api_key="YOUR_DOKU_TOKEN")

response = co.embed(
  texts=['LLM', 'Monitoring', 'Observability'],
  model='embed-english-v3.0',
  input_type='classification'
)
print(response)