Feeling stuck after 1 year as a GenAI dev – not sure what to focus on next
Posted by Srik_a_sepian@reddit | learnprogramming | View on Reddit | 11 comments
Hi everyone,
I’ve been working for about a year now in a service-based company after graduating. I was given a GenAI developer role, but lately I’ve been feeling a bit stuck and unsure about my direction.
So far I’ve worked with things like FastAPI, LangChain, LangGraph (including human-in-the-loop flows), and built some basic RAG systems with hybrid search. I’ve also used Streamlit for simple chatbot interfaces and experimented a bit with MCP servers and connecting them to Claude all the work in localhost not any servers cloud etc
The issue is that most of my work has been small PoC-type tasks, and I don’t really have strong mentorship. Because of that, I feel like I only understand things at a surface level and I’m not improving as much as I’d like.
Recently I started learning frontend because I’m thinking of becoming a full-stack GenAI developer, but now I’m even more confused about what to prioritize.
If I can only spend around 1 hour a day improving, what should I focus on? Should I go deeper into ML fundamentals, or focus more on backend systems, or continue with GenAI frameworks?
I’d really appreciate any guidance from people who’ve been in a similar position.
SreeGo@reddit
check this out. one structured course that covers everything from basics to how production grade gen ai systems work in real time.
https://appliedgenaicourse.com/courses/advanced-gen-ai-workflows/
DehabAsmara@reddit
The 'PoC hell' is a very real thing in 2026. Most service companies are chasing the hype, but very few are shipping production-grade GenAI. If you've got FastAPI and basic LangGraph down, stop learning new frameworks. The gap between a junior and a senior engineer isn't knowing more tools; it's knowing how to make existing ones reliable.
Nearly 85% of AI projects stall at the prototype stage because devs can't handle the 'stochastic' nature of LLMs at scale. Instead of learning React, spend your hour on Evaluations and Observability. If you can't quantify why a prompt fails across 1,000 runs, you're just guessing. Look into tools like Arize Phoenix or building your own 'Gold Dataset' for testing.
For a concrete project, build a multi-agent system that requires actual state coordination. Think of an automated Manga Generator where one agent analyzes a script, another tracks character consistency, and a third orchestrates final assembly. This forces you to handle race conditions, token limits, and long-running async tasks. These are things you'll never hit in a Streamlit demo.
One caveat: Don't fall for the 'AGI' hype. Focus on the plumbing. Mastering Redis for caching LLM responses or optimizing vector DB index strategies will make you much more hireable than knowing the hottest new wrapper of the week.
The first year is hard as everything feels like magic. Once you focus on reliability engineering, the magic disappears, but real skills begin.
deleted_by_reddit@reddit
[removed]
AutoModerator@reddit
Please, ask for programming partners/buddies in /r/programmingbuddies which is the appropriate subreddit
Your post has been removed
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
Master-Ad-6265@reddit
honestly stop jumping frameworks and just build one proper end-to-end project take your RAG setup and actually deploy it (auth, db, logging, scaling etc) that’ll teach you way more than learning another tool
deleted_by_reddit@reddit
[removed]
AutoModerator@reddit
Please, ask for programming partners/buddies in /r/programmingbuddies which is the appropriate subreddit
Your post has been removed
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
0x14f@reddit
"GenAI dev"
What a day to learn new terms....
NamerNotLiteral@reddit
It's a better term than "AI Dev" or "AI Engineer", imo. Clearly signals the fact they're backend devs with a bit more LLM/T2I knowledge rather than a proper MLE.
So, yeah, OP, you should either swing more into proper backend dev, not just "AI" APIs. Look at process scheduling and scaling, message brokers, databases for persistence, etc.
Financial_Dot_5560@reddit
Been there with the PoC hell - maybe try building one complete project from scratch instead of learning new frameworks, even if it's just deploying your existing RAG stuff to actual cloud infrastructure.
Srik_a_sepian@reddit (OP)
Sure I'll try that. Can you give me some insight on what kind of the project you suggest to me to build and what level . One is RAG noted any other that you could suggest