Au cours de cette étape, vous allez configurer votre projet Google Cloud et votre environnement Python dans Cloud Shell, activer les API requises, puis attribuer les rôles IAM (Identity and Access Management) dont vous avez besoin pour suivre le tutoriel.
Vous configurerez également un dépôt GitHub contenant les fichiers sources de l'application en dupliquant et en clonant le dépôt GoogleCloudPlatform/generative-ai
. Une fois ces étapes effectuées, vous vérifiez la configuration en exécutant et en testant l'application en local dans Cloud Shell.
Avant de commencer
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the Vertex AI, Compute Engine, Artifact Registry, Identity-Aware Proxy (IAP), Cloud Run Admin, Cloud Build, Identity and Access Management (IAM) API, and Gemini for Google Cloud APIs.
-
Make sure that you have the following role or roles on the project: Vertex AI User, Cloud Build Editor, Cloud Run Admin, Artifact Registry Admin, Compute Load Balancer Admin, Service Account User, IAP Policy Admin, OAuth Config Editor, and Service Usage Admin.
Check for the roles
-
In the Google Cloud console, go to the IAM page.
Go to IAM - Select the project.
-
In the Principal column, find all rows that identify you or a group that you're included in. To learn which groups you're included in, contact your administrator.
- For all rows that specify or include you, check the Role colunn to see whether the list of roles includes the required roles.
Grant the roles
-
In the Google Cloud console, go to the IAM page.
Accéder à IAM - Sélectionnez le projet.
- Cliquez sur Accorder l'accès.
-
Dans le champ Nouveaux comptes principaux, saisissez votre identifiant utilisateur. Il s'agit généralement de l'adresse e-mail d'un compte Google.
- Dans la liste Sélectionner un rôle, sélectionnez un rôle.
- Pour attribuer des rôles supplémentaires, cliquez sur Ajouter un autre rôle et ajoutez chaque rôle supplémentaire.
- Cliquez sur Enregistrer.
-
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the Vertex AI, Compute Engine, Artifact Registry, Identity-Aware Proxy (IAP), Cloud Run Admin, Cloud Build, Identity and Access Management (IAM) API, and Gemini for Google Cloud APIs.
-
Make sure that you have the following role or roles on the project: Vertex AI User, Cloud Build Editor, Cloud Run Admin, Artifact Registry Admin, Compute Load Balancer Admin, Service Account User, IAP Policy Admin, OAuth Config Editor, and Service Usage Admin.
Check for the roles
-
In the Google Cloud console, go to the IAM page.
Go to IAM - Select the project.
-
In the Principal column, find all rows that identify you or a group that you're included in. To learn which groups you're included in, contact your administrator.
- For all rows that specify or include you, check the Role colunn to see whether the list of roles includes the required roles.
Grant the roles
-
In the Google Cloud console, go to the IAM page.
Accéder à IAM - Sélectionnez le projet.
- Cliquez sur Accorder l'accès.
-
Dans le champ Nouveaux comptes principaux, saisissez votre identifiant utilisateur. Il s'agit généralement de l'adresse e-mail d'un compte Google.
- Dans la liste Sélectionner un rôle, sélectionnez un rôle.
- Pour attribuer des rôles supplémentaires, cliquez sur Ajouter un autre rôle et ajoutez chaque rôle supplémentaire.
- Cliquez sur Enregistrer.
-
Configurer le dépôt source
Sur GitHub, créez une branche du dépôt GoogleCloudPlatform/generative-ai. Découvrez comment dupliquer des dépôts dans GitHub.
-
In the Google Cloud console, activate Cloud Shell.
At the bottom of the Google Cloud console, a Cloud Shell session starts and displays a command-line prompt. Cloud Shell is a shell environment with the Google Cloud CLI already installed and with values already set for your current project. It can take a few seconds for the session to initialize.
- Dans le terminal Cloud Shell, exécutez les commandes suivantes pour cloner le dépôt dupliqué et définir le répertoire
gemini-streamlit-cloudrun
en tant que répertoire actif :cd
git clone https://github.com/GIT_USER_NAME/FORK_NAME/
cd FORK_NAME/gemini/sample-apps/gemini-streamlit-cloudrunRemplacez les éléments suivants :
- GIT_USER_NAME : votre nom d'utilisateur GitHub.
- FORK_NAME : nom du dépôt de duplication que vous venez de créer dans GitHub.
Configurer l'environnement et les dépendances
Dans le terminal Cloud Shell, exécutez les commandes suivantes pour configurer un environnement virtuel :
python3 -m venv gemini-streamlit source gemini-streamlit/bin/activate pip install -r requirements.txt
Exécutez les commandes suivantes pour définir les variables d'environnement requises pour l'initialisation de Vertex AI :
export GCP_PROJECT=$GOOGLE_CLOUD_PROJECT export GCP_REGION='us-central1'
Tester l'application en local
Depuis le terminal Cloud Shell, exécutez l'application en exécutant la commande suivante :
streamlit run app.py \ --browser.serverAddress=localhost \ --server.enableCORS=false \ --server.enableXsrfProtection=false \ --server.port 8080
Pour prévisualiser l'application, cliquez sur dans la barre des tâches Cloud Shell, puis sur Prévisualiser sur le port 8080.
Pour en savoir plus sur l'utilisation de la fonctionnalité d'aperçu sur le Web, consultez la section Prévisualiser les applications Web.