Track 2, Mihir Milind Ughade, SentinelDesk - #335
Open
mihir0804 wants to merge 1 commit into
Open
Conversation
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Hey everyone, here is my submission for Track 2: SentinelDesk.
I built SentinelDesk because I wanted a truly local, autonomous desktop AI that actually takes full advantage of AMD hardware without relying on cloud APIs. It's designed to act as a hands-on system copilot—meaning it runs entirely on-device, keeps user data completely private, and can execute system-level commands on its own.
Here is a quick breakdown of how it works under the hood:
Native ROCm Inference: The LLM engine is built explicitly on PyTorch customized for AMD ROCm. There are no external server calls, ensuring zero latency and maximum hardware utilization.
Resource Friendly: To make sure it runs smoothly on consumer Radeon GPUs without hitting VRAM bottlenecks, I integrated bitsandbytes to load models (like Llama-3-8B-Instruct) in 4-bit or 8-bit precision.
Persistent Memory: It's not just stateless text generation. I hooked up a lightweight ChromaDB instance so the agent remembers past interactions and user persona settings across different sessions.
Autonomous Tool Execution: The copilot goes beyond chatting by actually running local system diagnostics and file management tasks autonomously when needed.
I've detailed the full architecture and specific AMD optimization strategies in the Project_Specification.md and README.md files.
Demo Video: https://youtu.be/ti3ntYJ2NO4
Looking forward to sharing this with the judges and the rest of the community!