Skip to content

Cohere

VariableRequired
COHERE_API_KEYYes
Terminal window
curl -X POST http://localhost:8080/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{"model": "cohere/command-r-plus", "messages": [{"role": "user", "content": "Hello!"}]}'
use llmg_providers::cohere::CohereClient;
use llmg_core::provider::Provider;
let client = CohereClient::from_env()?;
  • Chat completions (auto-converts to Cohere format)
  • Embeddings