Won Central's India largest hackathon, @HackbyteTPC
Last time, I wasn't even selected for final round. Well this time, I came prepared π
Built an AI mock interviewer platform which provides guidance, DSA and system design interviews
#Hackathon#hackbyte#GenAI
@BettingPatel @HackbyteTPC Thanks, well it was pretty simple. Snapshots and image to text and then detailed context.
Talking avatar isn't mine, I took it from a GitHub repo
Won Central's India largest hackathon, @HackbyteTPC
Last time, I wasn't even selected for final round. Well this time, I came prepared π
Built an AI mock interviewer platform which provides guidance, DSA and system design interviews
#Hackathon#hackbyte#GenAI
@ayushunleashed i'll suggest using vercel ai sdk, used gemini-2.5 pro and was able to generate complex structured output without any errors.
been also using vercel ai sdk for very much complex output schema generation with openai, never faced any issue
Sending emails from Google Sheets has always been a challenging task for any college club. I built this in the last two days to automate the process. Plus, plain emails look dull and unattractive. Manually adding each person? Ehh, no thanks!
@Ayush_cg Completely agree with this as I have been using Langraph since awhile. Langgraph studio makes graphs and agents debugging easy as well
Also recommend this
https://t.co/UhuX04k2us
After hours of procrastinating, the LeetBot v2 is almost complete. I finally switched to Phidata from Lang-Graph due to prior experience.
Phidata is pretty good for these tasks, but it lacked Supabase support for both agent storage and memory. I finally added this myself.
Update : New and updated version of this extension is now live at microsoft edge web store !
Here is the link : https://t.co/xnAYcxpDIL
Would Love to have y'all feedback!
@mannupaaji Built this long way back, used accertinity ui. Was a Weeknd project. V2 is on its way :)
1) Scrapes current question and provide you hints, after your hints are exhausted provide you the solution.
2) You can also text in between to clear your doubts
https://t.co/FhGqRZrovx
Update : New and updated version of this extension is now live at microsoft edge web store !
Here is the link : https://t.co/xnAYcxpDIL
Would Love to have y'all feedback!
Integrated LangGraph with the current implementation
Three things more:
1) A database to store and record user queries and chat history- thinking of implementation like openai threads
2) Scraper cron job initialization
3) initialise remaining hints and similar question agent
I ran into another problem. While the GitHub agent works properly, it needs the code and file name to be explicitly provided, which isn't always practical. Now, I need to enhance the agent to extract the necessary information from the query and then upload it to GitHub seamlessly
LeetBot v2 updates:
The General_Query agent is done. It was the tough to implement because it had to use two-tools
I explored NeMo Guardrails and Guardrails AI for guardrailing the response, but they didn't support GROQ. Proper prompting was necessary to keep it on topic
The two tools which I have implemented are:
1) DSA classifier to classify topics
2) DuckDuckGo search for proper and detailed answering
For prompt-guarding, I explored nemo-guardrails and guardrails ai but they didnt support groq properly and also it added latency .
Created the tool myself for using github api and attached this tool to another agent. Voila it worked.
The problem right now is that it requires github personal token to commit code. Need to find alternative so that many people could use this without providing their own token
LeetBot-V2 updates:
Implement the query router agent: Now the agent can successfully differentiate between queries
Implemented the Github agent: Now agent is capable of uploading your code directly to Github itself!
2) Now comes the fun part, implementing github api agent. Well to be honest, it wasnt easy .I tried to implement this from scratch but deliberately failed to do so, had to take help from langchain's agent and tool system.