This project guides you through building a Google Workspace Add-on that leverages Gemini and Vertex AI for conducting sentiment analysis on emails in Gmail. The add-on automatically identifies emails with a negative tone and labels them accordingly, helping prioritize customer service responses or identify potentially sensitive emails.
- Build a Google Workspace Add-on
- Integrate Vertex AI with Google Workspace
- Implement OAuth2 authentication
- Apply sentiment analysis
- Utilize Apps Script
- Web Browser: Chrome (recommended)
- Dedicated Time: Set aside uninterrupted time.
- Incognito/Private Window: Important: Use an incognito or private browsing window to prevent conflicts with your personal accounts.
- Open the provided Cloud Console URL in your incognito window.
- Check I agree and click AGREE AND CONTINUE.
- Open the provided link to enable the Vertex AI API.
- Click Next to confirm the project.
- Click Enable.
- Open the provided Apps Script link in a new incognito tab.
- Click New project.
- Rename the project to "Gmail Sentiment Analysis with Gemini and Vertex AI".
- In Project Settings (gear icon), select "Show 'appsscript.json' manifest file in editor".
- In Project Settings, under Google Cloud Platform (GCP) Project, click Change project.
- Copy the Project number (numerical value, not Project ID) from Cloud Console.
- Paste the Project number into the Apps Script project settings and click Set project.
- Click the OAuth Consent details link in the error message.
- Click CONFIGURE CONSENT SCREEN.
- Select Internal for User Type and click CREATE.
- Set the App name to "Gmail Sentiment Analysis with Gemini and Vertex AI".
- Set the User support email and Developer contact information using the provided email.
- Click SAVE AND CONTINUE twice.
- Return to the Apps Script tab and set the project.
- Make a copy of this Apps Script project.
- Rename the Apps Script project to
Gmail Sentiment Analysis with Gemini and Vertex AI
. - Make sure to replace
[ADD YOUR GCP PROJECT ID HERE]
inVertex.gs
with your actual Project ID. - Click Save.
- Click Deploy > Test deployments.
- Confirm Gmail is listed under Application(s) and click Install.
- Click Done.
Refresh the Gmail tab. You should see a new add-on icon in the right side panel.
Troubleshooting:
- Refresh the browser if the add-on isn't visible.
- Uninstall and reinstall the add-on from the Test deployments window if it's still missing.
- Open the Add-on: Click the add-on icon in the Gmail side panel.
- Authorize the Add-on: Click Authorize access. Select your email and click Allow in the consent screen.
- Generate sample emails: Click the green "Generate sample emails" button.
- Wait for emails: Wait for the sample emails to appear in your inbox, or refresh.
- Start the analysis: Click the red "Analyze emails" button.
- Wait for labels: Wait for the "UPSET TONE 😡" label to appear on negative emails, or refresh.
- Close the Add-on: Click the X in the top right corner of the side panel.
You've completed the Gmail Sentiment Analysis with Gemini and Vertex AI lab! You now have a functional Gmail add-on for prioritizing emails. Experiment further by customizing the sentiment analysis or adding new features!