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(modelarmor): Added samples for creating, listing, updating and deleting model armor templates #4050

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

rudrakhsha-crest
Copy link

@rudrakhsha-crest rudrakhsha-crest commented Mar 28, 2025

Description

Created samples for creating, updating, reading, deleting model armor templates and added CODEOWNERS file.

Checklist

  • I have followed guidelines from CONTRIBUTING.MD and Samples Style Guide
  • Tests pass: npm test (see Testing)
  • Lint pass: npm run lint (see Style)
  • These samples need a new API enabled in testing projects to pass (let us know which ones)
  • These samples need a new/updated env vars in testing projects set to pass (let us know which ones)
  • This pull request is from a branch created directly off of GoogleCloudPlatform/nodejs-docs-samples. Not a fork.
  • This sample adds a new sample directory, and I updated the CODEOWNERS file with the codeowners for this sample
  • This sample adds a new sample directory, and I created GitHub Actions workflow for this sample
  • This sample adds a new Product API, and I updated the Blunderbuss issue/PR auto-assigner with the codeowners for this sample
  • Please merge this PR for me once it is approved

@rudrakhsha-crest rudrakhsha-crest requested review from a team as code owners March 28, 2025 11:59
Copy link

snippet-bot bot commented Mar 28, 2025

Here is the summary of changes.

You are about to add 13 region tags.

This comment is generated by snippet-bot.
If you find problems with this result, please file an issue at:
https://github.com/googleapis/repo-automation-bots/issues.
To update this comment, add snippet-bot:force-run label or use the checkbox below:

  • Refresh this comment

@product-auto-label product-auto-label bot added the samples Issues that are directly related to samples. label Mar 28, 2025
Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello @rudrakhsha-crest, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

Summary of Changes

This pull request introduces CRUD (Create, Read, Update, Delete) code snippets for the Model Armor API, along with a corresponding entry in the CODEOWNERS file. The new code snippets demonstrate how to manage Model Armor templates, including creating templates with various configurations (basic, SDP, metadata, labels), retrieving, listing, updating, and deleting them. The pull request also updates the .github/blunderbuss.yml file to include modelarmor to assign the GoogleCloudPlatform/cloud-modelarmor-team to issues and pull requests with the api: modelarmor label.

Highlights

  • CRUD Snippets for Model Armor: Adds code snippets demonstrating CRUD operations for Model Armor templates, showcasing different configurations and functionalities.
  • CODEOWNERS Update: Updates the CODEOWNERS file to include the appropriate team for the new Model Armor samples.
  • Blunderbuss Configuration: Updates the blunderbuss.yml file to automatically assign the cloud-modelarmor-team to issues and pull requests with the 'api: modelarmor' label.

Changelog

Click here to see the changelog
  • .github/blunderbuss.yml
    • Adds modelarmor to the list of APIs, assigning the GoogleCloudPlatform/cloud-modelarmor-team to related issues and pull requests.
  • CODEOWNERS
    • Adds an entry for model-armor, assigning ownership to the nodejs-samples-reviewers, cloud-samples-reviewers, and cloud-modelarmor-team.
  • model-armor/package.json
    • Creates a package.json file for the Model Armor samples, defining dependencies, scripts, and metadata.
  • model-armor/snippets/createTemplate.js
    • Adds a code snippet demonstrating how to create a basic Model Armor template with Responsible AI (RAI) filters.
  • model-armor/snippets/createTemplateWithAdvancedSdp.js
    • Adds a code snippet demonstrating how to create a Model Armor template with advanced Sensitive Data Protection (SDP) settings.
  • model-armor/snippets/createTemplateWithBasicSdp.js
    • Adds a code snippet demonstrating how to create a Model Armor template with basic SDP settings enabled.
  • model-armor/snippets/createTemplateWithLabels.js
    • Adds a code snippet demonstrating how to create a Model Armor template with custom labels.
  • model-armor/snippets/createTemplateWithMetadata.js
    • Adds a code snippet demonstrating how to create a Model Armor template with template metadata.
  • model-armor/snippets/deleteTemplate.js
    • Adds a code snippet demonstrating how to delete a Model Armor template.
  • model-armor/snippets/getTemplate.js
    • Adds a code snippet demonstrating how to retrieve a Model Armor template by its ID.
  • model-armor/snippets/listTemplates.js
    • Adds a code snippet demonstrating how to list all Model Armor templates in a project and location.
  • model-armor/snippets/listTemplatesWithFilter.js
    • Adds a code snippet demonstrating how to list Model Armor templates that match a specific filter criteria.
  • model-armor/snippets/updateTemplate.js
    • Adds a code snippet demonstrating how to update an existing Model Armor template.
  • model-armor/snippets/updateTemplateLabels.js
    • Adds a code snippet demonstrating how to update the labels of an existing Model Armor template.
  • model-armor/snippets/updateTemplateMetadata.js
    • Adds a code snippet demonstrating how to update the metadata of an existing Model Armor template.
  • model-armor/snippets/updateTemplateWithMaskConfiguration.js
    • Adds a code snippet demonstrating how to update an existing Model Armor template with a specific update mask.
  • model-armor/test/.eslintrc.yml
    • Adds eslint configuration for mocha tests.
  • model-armor/test/modelarmor.test.js
    • Adds tests for model armor snippets.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in issue comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.


In realms of code, where models reside,
Armor we forge, with filters applied.
Templates we craft, with labels so fine,
Protecting the output, making it shine.
CRUD operations, our guiding light,
Ensuring AI's future is secure and bright.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request adds CRUD code snippets for Model Armor, including tests and updates to CODEOWNERS and blunderbuss.yml. The code appears well-structured and follows common practices. However, there are a few areas that could be improved for clarity and maintainability.

Summary of Findings

  • Copyright Year: The copyright year in the snippets is set to 2025. Please confirm this is the correct year or update it to the current year.
  • Missing Error Handling: The code snippets lack explicit error handling for the client.createTemplate calls. Adding error handling would improve the robustness of the samples.
  • Inconsistent Template Creation: The test suite creates templates directly using the client, while the snippets use execSync to call the CLI. Consider using a consistent approach for both.

Merge Readiness

The pull request is almost ready for merging. Addressing the copyright year, adding error handling, and ensuring consistent template creation would improve the quality of the code. I am unable to directly approve this pull request, and recommend that others review and approve this code before merging. At a minimum, the copyright year and error handling should be addressed before merging.

@@ -0,0 +1,92 @@
// Copyright 2025 Google LLC
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The copyright year is set to 2025. Is this intentional? Should it be updated to the current year?

Suggested change
// Copyright 2025 Google LLC
// Copyright 2024 Google LLC

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not addressing these as the current year is 2025

@@ -0,0 +1,129 @@
// Copyright 2025 Google LLC
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The copyright year is set to 2025. Is this intentional? Should it be updated to the current year?

Suggested change
// Copyright 2025 Google LLC
// Copyright 2024 Google LLC

@@ -0,0 +1,99 @@
// Copyright 2025 Google LLC
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The copyright year is set to 2025. Is this intentional? Should it be updated to the current year?

Suggested change
// Copyright 2025 Google LLC
// Copyright 2024 Google LLC

@@ -0,0 +1,92 @@
// Copyright 2025 Google LLC
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The copyright year is set to 2025. Is this intentional? Should it be updated to the current year?

Suggested change
// Copyright 2025 Google LLC
// Copyright 2024 Google LLC

@@ -0,0 +1,92 @@
// Copyright 2025 Google LLC
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The copyright year is set to 2025. Is this intentional? Should it be updated to the current year?

Suggested change
// Copyright 2025 Google LLC
// Copyright 2024 Google LLC

Comment on lines +119 to +120
const [response] = await client.createTemplate(request);
console.log(`Created template: ${response.name}`);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider adding error handling to the createTemplate call to handle potential API errors.

    const [response] = await client.createTemplate(request);
    console.log(`Created template: ${response.name}`);
  } catch (error) {
    console.error("Error creating template:", error);
  }

Comment on lines +90 to +91
const [response] = await client.createTemplate(request);
console.log(`Created template: ${response.name}`);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider adding error handling to the createTemplate call to handle potential API errors.

    const [response] = await client.createTemplate(request);
    console.log(`Created template: ${response.name}`);
  } catch (error) {
    console.error("Error creating template:", error);
  }

Comment on lines +83 to +84
const [response] = await client.createTemplate(request);
console.log(`Created template: ${response.name}`);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider adding error handling to the createTemplate call to handle potential API errors.

    const [response] = await client.createTemplate(request);
    console.log(`Created template: ${response.name}`);
  } catch (error) {
    console.error("Error creating template:", error);
  }

Comment on lines +83 to +84
const [response] = await client.createTemplate(request);
console.log(`Created Model Armor Template: ${response.name}`);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider adding error handling to the createTemplate call to handle potential API errors.

    const [response] = await client.createTemplate(request);
    console.log(`Created Model Armor Template: ${response.name}`);
  } catch (error) {
    console.error("Error creating template:", error);
  }

Comment on lines +38 to +57
// Helper function to create a template for sanitization tests
async function createTemplate(templateId, filterConfig) {
const parent = `projects/${projectId}/locations/${locationId}`;

try {
const [response] = await client.createTemplate({
parent: parent,
templateId: templateId,
template: {
filterConfig: filterConfig,
},
});

console.log(`Created template: ${response.name}`);
return response;
} catch (error) {
console.error(`Error creating template ${templateId}:`, error);
throw error;
}
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The test suite uses execSync to call the CLI, while the snippets use the client library directly. For consistency, consider using the client library in the tests as well, or vice versa.

async function createTemplate(templateId, filterConfig) {
  const parent = `projects/${projectId}/locations/${locationId}`;

  try {
    const [response] = await client.createTemplate({
      parent: parent,
      templateId: templateId,
      template: {
        filterConfig: filterConfig,
      },
    });

    console.log(`Created template: ${response.name}`);
    return response;
  } catch (error) {
    console.error(`Error creating template ${templateId}:`, error);
    throw error;
  }
}

@rudrakhsha-crest rudrakhsha-crest changed the title Added CRUD code snippets with codeowners file feat(modelarmor): Added CRUD for model armor code snippets Mar 28, 2025
@rudrakhsha-crest rudrakhsha-crest changed the title feat(modelarmor): Added CRUD for model armor code snippets feat(model-armor) - Snippets for creating, listing, updating and deleting templates Mar 28, 2025
@rudrakhsha-crest rudrakhsha-crest changed the title feat(model-armor) - Snippets for creating, listing, updating and deleting templates feat(modelarmor):Snippets for creating, listing, updating and deleting templates Mar 28, 2025
@rudrakhsha-crest rudrakhsha-crest changed the title feat(modelarmor):Snippets for creating, listing, updating and deleting templates feat(modelarmor): Snippets for creating, listing, updating and deleting templates Mar 28, 2025
@rudrakhsha-crest rudrakhsha-crest changed the title feat(modelarmor): Snippets for creating, listing, updating and deleting templates feat(modelarmor): Added samples for creating, listing, updating and deleting model armor templates Mar 28, 2025
@utsav1810 utsav1810 requested a review from a team April 3, 2025 03:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
samples Issues that are directly related to samples.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants