Providers

Cohere

Use the cohere adapter for Cohere Chat API requests.

const { request } = await connector.createProviderContextRequest(
  "cohere",
  {
    task: "Answer using saved workspace preferences and current evidence.",
    tokenBudget: 1400
  },
  {
    model: "command-a",
    input: "Prepare the implementation answer."
  }
);

// Send `request` with your Cohere client.

The SDK uses Cohere chat messages and includes Neutron memory as a system message. If your Cohere workflow uses tools, keep tool execution in your application and store useful outcomes with remember or reflect.