Hi everyone,
I’m starting my journey toward becoming an AI engineer and currently learning Python and ML fundamentals.
I’d love advice from people working with LangChain or LLM apps:
What projects should I build next to move toward AI/LLM engineering?
Thank you!
Hi @ManuManohar
welcome!
Great to hear you’re starting your AI journey
Since you’re already learning Python + ML basics, a good next step is to move toward LLM application building, not just model training.
Here’s a practical progression:
1. Build a Simple RAG App
This teaches retrieval, embeddings, and prompting.
2. Build a Tool-Using Agent
-
Create tools (weather API, calculator, DB query)
-
Use create_agent to let the model decide which tool to call
This teaches tool calling + reasoning.
3. Build a Multi-Step Workflow with LangGraph
-
Example: booking assistant, research agent, or support bot
-
Add memory, state, and conditional branching
This teaches orchestration (very valuable skill).
4. Deploy Something
-
Add streaming
-
Deploy on FastAPI
-
Connect to a frontend
Real-world deployment experience is a big differentiator.
If you consistently build and ship small but complete apps, you’ll grow much faster than just doing notebooks.
You’re on the right path — keep building 