Skip to content

feat(gemini): add support for gemini code assist #51

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

Merged
merged 1 commit into from
Mar 5, 2025
Merged
Show file tree
Hide file tree
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: 10 additions & 0 deletions .gemini/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# https://developers.google.com/gemini-code-assist/docs/customize-gemini-behavior-github
have_fun: false
code_review:
disable: false
comment_severity_threshold: MEDIUM
max_review_comments: -1
pull_request_opened:
help: false
summary: true
code_review: true
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ You can use this package as part of your MLOps toolkit or platform (e.g., Model
- [Workflows](#workflows)
- [Tools](#tools)
- [Automation](#automation-1)
- [AI Assistant: Gemini Code Assist](#ai-assistant-gemini-code-assist)
- [Commits: Commitizen](#commits-commitizen)
- [Dependabot: Dependabot](#dependabot-dependabot)
- [Git Hooks: Pre-Commit](#git-hooks-pre-commit)
- [Tasks: Just](#tasks-just)
- [CI/CD](#cicd)
Expand Down Expand Up @@ -322,6 +324,15 @@ This sections motivates the use of developer tools to improve your coding experi

Pre-defined actions to automate your project development.

### AI Assistant: [Gemini Code Assist](https://developers.google.com/gemini-code-assist/docs/review-github-code)

- **Motivations**:
- Increase your coding productivity
- Get code suggestions and completions
- Reduce the time spent on reviewing code
- **Limitations**:
- Can generate wrong code, reviews, or summaries

### Commits: [Commitizen](https://commitizen-tools.github.io/commitizen/)

- **Motivations**:
Expand All @@ -333,6 +344,17 @@ Pre-defined actions to automate your project development.
- **Alternatives**:
- Do It Yourself (DIY)

### Dependabot: [Dependabot](https://docs.github.com/en/code-security/getting-started/dependabot-quickstart-guide)

- **Motivations**:
- Avoid security issues
- Avoid breaking changes
- Update your dependencies
- **Limitations**:
- Can break your code
- **Alternatives**:
- Do It Yourself (DIY)

### Git Hooks: [Pre-Commit](https://pre-commit.com/)

- **Motivations**:
Expand Down