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

# Set Up Your Agent on AWS

> Before you begin, ensure you've finished installing Rasa Pro on Amazon Web Services:

<Note>
  Before you begin, ensure you've finished installing Rasa Pro on Amazon Web Services:
  [Installation Guide](/docs/learn/deployment/aws/aws-playbook-intro)
</Note>

## Recommended Next Steps

Now that you have successfully deployed Rasa Pro on AWS, you can proceed with getting a live Rasa agent in place that you can interact with.

**Plan of Action:**

* Confirm Your Agent Runs Locally
* Upload Trained Model to AWS
* Run Your Deployed Rasa Agent

***

## Confirm Your Agent Runs Locally

If you already have a Rasa agent, make sure it trains and runs successfully on your local machine.

### Don’t Have an Agent Yet?

If you already have a Rasa agent you’ve built, you can skip this section and go directly to [Upload Trained Model to AWS](/docs/learn/deployment/aws/aws-playbook-setup-agent#upload-trained-model-to-aws).

If not, feel free to use one of our pre-built **Starter Packs**. These agents come ready-made for specific industries, and you can run them as-is or customize them for your own use case.

Download the latest release of one of the following:

* [Starter Pack - Insurance](https://github.com/rasa-customers/starterpack-insurance-en/releases)
* [Starter Pack - Retail Banking](https://github.com/rasa-customers/starterpack-retail-banking-en/releases/)
* [Starter Pack - Telecom](https://github.com/rasa-customers/starterpack-telco-en/releases)

### Run Your Starter Pack Locally

Once you have downloaded your Starter Pack, follow the corresponding instructions linked below to train and run your Rasa agent locally:

* [Instructions - Insurance](https://learning.rasa.com/rasa-starter-packs/insurance/)
* [Instructions - Retail Banking](https://learning.rasa.com/rasa-starter-packs/retail-banking/)
* [Instructions - Telecom](https://learning.rasa.com/rasa-starter-packs/telecom/)

<Note>
  Make sure your local agent's `endpoints.yaml` matches the one in the deployed agent, so that the agent behaves identically in both environments. You can see the default values set by the deployment playbook [here](https://github.com/RasaHQ/rasa-deployment-playbooks/blob/main/aws/rasa/assistant/values.template.yaml).
  If you want to change the configuration of models for the deployed agent, change `aws/rasa/assistant/values.yaml` and rerun your `helm upgrade` command.
</Note>

## Upload Trained Model to AWS

After you have successfully run your Rasa agent locally, you can now move it to the cloud to share with others. This consists of two steps:

1. Upload the Rasa Model
2. Restart Rasa Kubernetes Pod

### Upload the Rasa Model

Navigate to your Rasa project directory

```bash theme={null}
cd /path/to/your/rasa/project
```

Ensure you are logged in and [authenticated with AWS](/docs/learn/deployment/aws/aws-playbook-setup#install-tools)

Upload the model to your bucket

```bash theme={null}
aws s3 cp models/<your-model-file.tar.gz> s3://$MODEL_BUCKET/models.tar.gz
```

Verify upload

```bash theme={null}
aws s3 ls s3://$MODEL_BUCKET/
```

### Restart Rasa

Restart Rasa to create a new pod which will pull your new model from your bucket.

Authenticate to your AWS cluster

```bash theme={null}
aws eks --region $AWS_REGION update-kubeconfig --name $NAME
```

<Note>
  If you changed the Kubernetes deployment name from the default `rasa`, use your custom deployment name in place of `rasa` in the commands below.
</Note>

Restart deployments

```bash theme={null}
kubectl -n $NAMESPACE rollout restart deployment rasa
```

To check if the Rasa pod is up and running yet, run the following command and see if the status of the new Rasa pod is "Running".

```bash theme={null}
kubectl -n $NAMESPACE rollout status deployment/rasa
# or
kubectl -n $NAMESPACE get pods -w
```

**Tip:** You can view info, warning and error messages in your pod logs:

View the pod's logs

```bash theme={null}
kubectl -n $NAMESPACE logs <your-pod-name>
```

You have now successfully updated the model and restarted your Rasa Pro environment.
Next, you’ll set up a simple front-end web page to interact with your agent.

## Interact With Your Rasa Agent

### Interact With Your Rasa Agent from Your Browser

Up to now, you’ve been running and interacting with your Rasa agent **locally** from your browser, connected to your **local instance** of Rasa Pro.

Now, you'll update the connection so your browser connects to your **deployed (cloud) instance** of Rasa Pro. This way, you’ll be interacting with your Rasa agent running in the cloud rather than on your local machine.

1. In your Starter Pack project folder, go to the `chatwidget` directory
2. Open up the `index.html` file in a text editor
3. Replace

```html theme={null}
<rasa-chatbot-widget server-url="http://localhost:5005"
```

with the same domain you set in your `$DOMAIN` environment variable (the domain where your Rasa agent is deployed):

```html theme={null}
<rasa-chatbot-widget server-url="http://REPLACE_WITH_YOUR_DOMAIN"
```

4. Save the changes to `index.html`
5. Open up `index.html` in your browser

**Congratulations! You should now be able to successfully interact with your Rasa agent.**

## Connect Your Agent to Other Channels

In addition to running your agent through the local widget, you can connect it to many different messaging and voice channels - for example, your own website, Slack, Facebook Messenger, or Twilio.

For a full list of supported integrations and setup guides, see the [Rasa documentation on channels](/docs/reference/channels/messaging-and-voice-channels).

***

## Additional Resources

Explore these guides and references to deepen your understanding of Rasa and related integrations:

* [Getting Started Tutorial](/docs/pro/tutorial)
* [Rasa Learning Platform](https://learning.rasa.com/)
* [Guide to Setting Up CI/CD](/docs/pro/deploy/ci-cd)
* [Channel Integrations (Voice & Messaging)](/docs/reference/channels/messaging-and-voice-channels)
* [Analytics Setup with Kafka, Metabase, or Langfuse](/docs/reference/integrations/analytics)


## Related topics

- [Set Up Your Agent on GCP](/docs/learn/deployment/gcp/gcp-playbook-setup-agent.md)
- [Set Up Your Agent on Azure](/docs/learn/deployment/azure/azure-playbook-setup-agent.md)
- [Studio Version Migration Guide](/docs/reference/changelogs/studio-version-migration-guide.md)
- [How to Set Up Your Assistant](/docs/studio/build/set-up-your-assistant.md)
- [Installing on Amazon Web Services (AWS)](/docs/learn/deployment/aws/aws-playbook-intro.md)
