> ## Documentation Index
> Fetch the complete documentation index at: https://docs.phidata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Cohere

## Example

<CodeGroup>
  ```python agent.py theme={null}

  from phi.agent import Agent
  from phi.model.cohere import CohereChat

  agent = Agent(
  model=CohereChat(id="command-r-08-2024"),
      show_tool_calls=True,
      markdown=True,
  )

  agent.print_response("Give me in-depth analysis of NVDA and TSLA")

  ```
</CodeGroup>

## Cohere Params

<Snippet file="model-cohere-params.mdx" />

`Cohere` is a subclass of the [Model](/reference/model/base) class and has access to the same params.
