Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add deployment instructions on Google Kubernetes Engine #140

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions computer-use-demo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,11 @@ docker run \

Once the container is running, see the [Accessing the demo app](#accessing-the-demo-app) section below for instructions on how to connect to the interface.

### Vertex
### Google Cloud Vertex AI

You'll need to pass in Google Cloud credentials with appropriate permissions to use Claude on Vertex.
#### Running on local machine

You'll need to pass in Google Cloud credentials with appropriate permissions to use Claude on Google Cloud Vertex AI.

```bash
docker build . -t computer-use-demo
Expand All @@ -125,6 +127,10 @@ This example shows how to use the Google Cloud Application Default Credentials t

You can also set `GOOGLE_APPLICATION_CREDENTIALS` to use an arbitrary credential file, see the [Google Cloud Authentication documentation](https://cloud.google.com/docs/authentication/application-default-credentials#GAC) for more details.


#### Deploing on Google Kubernetes Engine (GKE)
If you are looking to run the computer use demo on a secure sandbox container within Google Kubernetes Engine (GKE), please at a look at the [deployment instructions here](https://github.com/GoogleCloudPlatform/generative-ai/tree/main/partner-models/claude/computer-use-demo)

### Accessing the demo app

Once the container is running, open your browser to [http://localhost:8080](http://localhost:8080) to access the combined interface that includes both the agent chat and desktop view.
Expand Down