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

# Aws Bedrock

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

  from phi.agent import Agent
  from phi.model.aws.claude import Claude

  agent = Agent(
      model=Claude(id="anthropic.claude-3-5-sonnet-20240620-v1:0"),
      show_tool_calls=True,
      markdown=True,
      debug_mode=True,
  )

  agent.print_response("What is the stock price of NVDA and TSLA")
  ```
</CodeGroup>

## AWS Bedrock Params

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

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