-
Notifications
You must be signed in to change notification settings - Fork 28
feat: AI code generation #123
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
Open
PraneshASP
wants to merge
31
commits into
master
Choose a base branch
from
feat/ai-code-generation
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
016192d
feat: add ai backend
PraneshASP 6b59cda
feat: add frontend conponents for AI Assist
PraneshASP 9785762
feat: add gemini integration
PraneshASP 0cab49f
refactor: update frontend to use rust-backend for ai service
PraneshASP 0f06196
chore: remove ts-backend for ai service
PraneshASP 245aacc
chore: fmt
PraneshASP 0c2a6b5
chore: fix linter issues
PraneshASP 0088e99
chore: fix linter issues
PraneshASP a85505f
chore: fmt
PraneshASP d30e2a7
feat: add rate limiter
PraneshASP bb7b924
feat: add rate limit checks
PraneshASP 8ce8610
chore: fmt and linting
PraneshASP 895beb8
chore: fmt and linting
PraneshASP d607711
feat: add e2e tests
PraneshASP 4b4afc3
ci: enable e2e tests
PraneshASP 9e4d48c
ci: update rust version
PraneshASP 1e0eed7
fix: update markdown renderer component
PraneshASP deb4b74
chore: remove unused deps from swaypad
PraneshASP fd9f1ed
fix: update examples and config to use latest versions
PraneshASP c8acf32
ci: remove rendundant tests
PraneshASP 6e9d0f5
chore: fix ci
PraneshASP 291e364
chore: update prompt
PraneshASP 315aedd
Merge branch 'master' into feat/ai-code-generation
PraneshASP a25aafd
feat: add config map (#127)
vigneshv-eng 69c08ee
Merge branch 'master' into feat/ai-code-generation
PraneshASP f5d5b1d
Merge branch 'master' into feat/ai-code-generation
PraneshASP 7233b76
ci: bump chart version to 0.1.5
PraneshASP ea72178
Merge branch 'master' into feat/ai-code-generation
PraneshASP 3c408cd
ci: bump chart version to 0.1.6
PraneshASP 0baff6b
Merge branch 'feat/ai-code-generation' of https://github.com/FuelLabs…
PraneshASP b8dd279
Merge branch 'master' into feat/ai-code-generation
PraneshASP File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deploy job doesn't depend on frontend E2E tests
High Severity
The
deployjob only depends onbuild-and-publish-imagebut not onfrontend-build-and-test. Since theif: github.ref != 'refs/heads/master'guard was removed fromfrontend-build-and-test, this job now runs on master — but thedeployjob can proceed without waiting for it. This means production deployment can happen even if the new AI E2E tests (or existing frontend tests) fail.Additional Locations (1)
.github/workflows/ci.yml#L183-L185