arrow_back

Build a Chat Application using the PaLM 2 API on Cloud Run

가입 로그인
Test and share your knowledge with our community!
done
Get access to over 700 hands-on labs, skill badges, and courses

Build a Chat Application using the PaLM 2 API on Cloud Run

Lab 1시간 30분 universal_currency_alt 크레딧 5개 show_chart 중급
Test and share your knowledge with our community!
done
Get access to over 700 hands-on labs, skill badges, and courses

GSP1201

Google Cloud self-paced labs logo

Overview

This lab demonstrates how to create and deploy an AI-powered chat application using Cloud Run on Google Cloud. The chat application is powered by the PaLM 2 Chat Bison Large Language Model's (LLM) (text-chat) APIs.

You will leverage the APIs in a web application and deploy it to Cloud Run, using Cloud Build and Artifact Repository to store the container image of the application build. The application can be used as a starting point for web interfaces using the PaLM2 APIs.

What you will learn:

In this lab, you will create a web application that runs on Cloud Run which utilizes APIs provided by the PaLM 2 for text (Chat Bison) Large Language Model (LLM) and surfaces them through a simple web interface deployed in the lab.

After this lab you will gain an understanding of how to build a web application which can utilize Large Language Models like the Chat Bison model to create engaging, conversation based interactions with end users who can asks questions and receive insightful responses through the chat application.

To complete the lab you will:

  • Build a Docker image to run the application using Cloud Build
  • Deploy a Cloud Run service that executes the application
  • Review python code to understand how the application utilizes the Chat Bison model

Let's begin!

Setup and requirements

Before you click the Start Lab button

Read these instructions. Labs are timed and you cannot pause them. The timer, which starts when you click Start Lab, shows how long Google Cloud resources will be made available to you.

This hands-on lab lets you do the lab activities yourself in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials that you use to sign in and access Google Cloud for the duration of the lab.

To complete this lab, you need:

  • Access to a standard internet browser (Chrome browser recommended).
Note: Use an Incognito or private browser window to run this lab. This prevents any conflicts between your personal account and the Student account, which may cause extra charges incurred to your personal account.
  • Time to complete the lab---remember, once you start, you cannot pause a lab.
Note: If you already have your own personal Google Cloud account or project, do not use it for this lab to avoid extra charges to your account.

How to start your lab and sign in to the Google Cloud console

  1. Click the Start Lab button. If you need to pay for the lab, a pop-up opens for you to select your payment method. On the left is the Lab Details panel with the following:

    • The Open Google Cloud console button
    • Time remaining
    • The temporary credentials that you must use for this lab
    • Other information, if needed, to step through this lab
  2. Click Open Google Cloud console (or right-click and select Open Link in Incognito Window if you are running the Chrome browser).

    The lab spins up resources, and then opens another tab that shows the Sign in page.

    Tip: Arrange the tabs in separate windows, side-by-side.

    Note: If you see the Choose an account dialog, click Use Another Account.
  3. If necessary, copy the Username below and paste it into the Sign in dialog.

    {{{user_0.username | "Username"}}}

    You can also find the Username in the Lab Details panel.

  4. Click Next.

  5. Copy the Password below and paste it into the Welcome dialog.

    {{{user_0.password | "Password"}}}

    You can also find the Password in the Lab Details panel.

  6. Click Next.

    Important: You must use the credentials the lab provides you. Do not use your Google Cloud account credentials. Note: Using your own Google Cloud account for this lab may incur extra charges.
  7. Click through the subsequent pages:

    • Accept the terms and conditions.
    • Do not add recovery options or two-factor authentication (because this is a temporary account).
    • Do not sign up for free trials.

After a few moments, the Google Cloud console opens in this tab.

Note: To view a menu with a list of Google Cloud products and services, click the Navigation menu at the top-left. Navigation menu icon

Task 1. Environment Setup

In order to deploy the Cloud Run application we will download the source from a Cloud Storage bucket.

  1. Open a new Cloud Shell terminal and execute the following command.
gsutil cp -R gs://spls/gsp1201/chat-flask-cloudrun .
  1. Next, navigate to the folder of the project.
cd chat-flask-cloudrun
  1. Set the region and project environment variables referenced by subsequent commands.
export PROJECT_ID={{{ project_0.project_id | "Filled in at lab startup." }}} export REGION={{{ project_0.startup_script.region | "Filled in at lab startup." }}}

Task 2. Build a Docker image

Next, you will build a Docker image for the application and push it to Artifact Registry. Once built and stored you will reference the container image to deploy the application to Cloud Run.

  1. Set environment variables required.
export AR_REPO='chat-app-repo' export SERVICE_NAME='chat-flask-app'
  1. Next, run the following command to create the Artifact Repository:
gcloud artifacts repositories create "$AR_REPO" --location="$REGION" --repository-format=Docker
  1. Configure Docker authentication and submit the container image build job to Cloud Build.
gcloud builds submit --tag "$REGION-docker.pkg.dev/$PROJECT_ID/$AR_REPO/$SERVICE_NAME"
  1. To verify if the image is pushed to the Artifact Registry, go to the Artifact Registry page. Left Menu > Artifact Registry. Confirm the chat-app-repo is available.

Artifact Repository

Click Check my progress to verify the objective. Build a Docker image

Task 3. Deploy the application to Cloud Run

Now that the application has been downloaded and built via Cloud Build, you will now deploy and test it on Cloud Run.

  1. In Cloud Shell, run the following command:
gcloud run deploy "$SERVICE_NAME" --port=8080 --image="$REGION-docker.pkg.dev/$PROJECT_ID/$AR_REPO/$SERVICE_NAME:latest" --allow-unauthenticated --region=$REGION --platform=managed --project=$PROJECT_ID --set-env-vars=GCP_PROJECT=$PROJECT_ID,GCP_REGION=$REGION Note: This step will take a few minutes to complete.
  1. To launch the application, click the service URL provided in the output of the last command:

Service URL

  1. Enter the following query into the input text box and click Send. You will receive a response generated by the PaLM 2 Chat Bison API in the output text box below the prompt input.

Output

Click Check my progress to verify the objective. Deploy the application to Cloud Run

Task 4. Explore the python code

To understand more about how the application utilizes the PaLM2 Chat Bison API, you will briefly explore the code used by the app.

  1. In Cloud Shell, click Open Editor which will provision a new Cloud Shell Editor for you to browse the code with.

  2. Expand the folder chat-flask-app and select app.py to begin exploring the code.

Cloud Editor

  1. There are a few python methods in this file which are important to note.
  • create_session: this method creates a new session with Vertex AI using the chat-bison@001 model. It is used by the route /palm2 which you will observe further to establish a new chat session.
def create_session(): chat_model = ChatModel.from_pretrained("chat-bison@001") chat = chat_model.start_chat() return chat
  • response: this method defines sensible defaults for parameters used to by the PaLM2 APIs such as the temperature, max_output_tokens, top_p and top_k parameters and submits the prompt to the chat bison model using the session created by the create_session method to retrieve a response.
def response(chat, message): parameters = { "temperature": 0.2, "max_output_tokens": 256, "top_p": 0.8, "top_k": 40 } result = chat.send_message(message, **parameters) return result.text
  • index and vertex_palm: the index and vertex_palm methods define routes for the application's API. The index method loads the index.html page when a user loads the application and the vertex_palm method submits the user's prompt collected from the index.html page to the API and returns the results in JSON format.
@app.route('/') def index(): ### return render_template('index.html') @app.route('/palm2', methods=['GET', 'POST']) def vertex_palm(): user_input = "" if request.method == 'GET': user_input = request.args.get('user_input') else: user_input = request.form['user_input'] logger.log(f"Starting chat session...") chat_model = create_session() logger.log(f"Chat Session created") content = response(chat_model,user_input) return jsonify(content=content)

The index.html file includes inline JavaScript to read the results from the form submission when a user clicks Send and updates the UI with the response of the PaLM 2 API call.

Congratulations!

You have now completed the lab! In this lab, you learned how to build and deploy a simple web application using Cloud Build and Artifact Registry. The application is deployed to Cloud Run and utilizes the PaLM 2 Chat Bison model to respond to end user queries in order to create a chat based application that allows end users to ask questions and recieve responses in a web UI.

Next steps

Google Cloud training and certification

...helps you make the most of Google Cloud technologies. Our classes include technical skills and best practices to help you get up to speed quickly and continue your learning journey. We offer fundamental to advanced level training, with on-demand, live, and virtual options to suit your busy schedule. Certifications help you validate and prove your skill and expertise in Google Cloud technologies.

Manual Last Updated December 1st, 2023

Lab Last Tested December 1st, 2023

Copyright 2024 Google LLC All rights reserved. Google and the Google logo are trademarks of Google LLC. All other company and product names may be trademarks of the respective companies with which they are associated.