> ## 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.

# DeepSeek

## Example

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

  from phi.agent import Agent
  from phi.model.deepseek import DeepSeekChat

  agent = Agent(
      model=DeepSeekChat(),
      show_tool_calls=True,
      markdown=True,
  )

  agent.print_response("Give me in-depth analysis of NVDA and TSLA")
  ```
</CodeGroup>

## DeepSeek Params

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

## Model Params

`DeepSeek` is a subclass of the [OpenAILike](/reference/model/openai-like) class and has access to the same params.
