-
Notifications
You must be signed in to change notification settings - Fork 0
Feature/free ai rock UI rewrite 1488402945663055672 #20
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
SayanthRock
merged 7 commits into
main
from
feature/free-ai-rock-ui-rewrite-1488402945663055672
Aug 11, 2026
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1e8b1a0
Initialize FREE AI ROCK Chat UI structure and Database
google-labs-jules[bot] 2220e85
Fix build.gradle.kts and add jitpack repository
google-labs-jules[bot] e7a922b
Fix unit tests and add package-lock.json
google-labs-jules[bot] 10ba7ba
Finalize FREE AI ROCK UI rewrite task
google-labs-jules[bot] f44f17b
Create FreeAiRockApplication and register in manifest
google-labs-jules[bot] 2986c5f
Empty submission for confirmation
google-labs-jules[bot] 49980d2
Add @vercel/analytics to package.json
google-labs-jules[bot] 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
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
9 changes: 9 additions & 0 deletions
9
app/src/main/java/com/sayanthrock/freeairock/FreeAiRockApplication.kt
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| package com.sayanthrock.freeairock | ||
|
|
||
| import android.app.Application | ||
|
|
||
| class FreeAiRockApplication : Application() { | ||
| override fun onCreate() { | ||
| super.onCreate() | ||
| } | ||
| } |
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
8 changes: 8 additions & 0 deletions
8
app/src/main/java/com/sayanthrock/freeairock/data/ai/AiProvider.kt
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| package com.sayanthrock.freeairock.data.ai | ||
|
|
||
| import kotlinx.coroutines.flow.Flow | ||
|
|
||
| interface AiProvider { | ||
| suspend fun generateResponse(prompt: String): String | ||
| fun streamResponse(prompt: String): Flow<String> | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| package com.sayanthrock.freeairock.data.chat | ||
|
|
||
| // Directory placeholder |
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.
Suggestion: The activity now renders only
ChatScreen, so the existing PR review flow is no longer reachable from the application. Restore navigation or exposeReviewScreenalongside the new chat UI so users can still submit and analyze pull requests. [incomplete implementation]Severity Level: Critical 🚨
Prompt for AI Agent 🤖