$ whoami
Manas Dani β AI Engineer | MS Data Science @ Indiana University Bloomington
$ cat current_mission.txt
π Building production-grade AI agents with LangGraph, LangChain & RAG
π± Diving deep into LLM evaluation, observability & agent architectures
β‘ Making AI measurable, trustworthy, and scalable for the real world
βοΈ Writing about Agentic AI on Medium
π« danimanas28@gmail.com
$ ls skills/
agentic_systems/ rag_pipelines/ llm_evaluation/ data_engineering/
$ echo $STATUS
> READY TO BUILD β currently shipping agents that actually work in production|
π€ Agentic AI Systems Multi-agent orchestration with LangGraph, stateful workflows, tool use, memory management & complex reasoning chains |
π RAG & Retrieval Vector databases, hybrid search, embedding pipelines, context compression & retrieval-augmented generation at scale |
π LLM Evaluation Observability dashboards, tracing, benchmarking, hallucination detection & trust metrics for production LLM systems |
π§ AI / GenAI / Agents
π Data Engineering
βοΈ Cloud & Infrastructure
ποΈ Databases & Vector Stores
π» Languages
π οΈ Frameworks & Dev Tools
|
π Why LangChain Isn't Enough 5 Surprising Truths About Building Real-World AI Agents with LangGraph
|
π§ Beyond Answering Questions How Agentic AI Is Redefining How We Work
|
class ManasDani:
def __init__(self):
self.role = "AI Engineer"
self.education = "MS Data Science @ Indiana University Bloomington"
self.currently_building = [
"Production-grade multi-agent systems with LangGraph",
"RAG pipelines with hybrid retrieval & re-ranking",
"LLM evaluation & observability frameworks",
]
self.currently_learning = [
"Agent memory architectures",
"LLM tracing with Langsmith & Arize",
"Frontier model fine-tuning",
]
self.mission = "Make AI measurable, trustworthy, and scalable"
def __repr__(self):
return f"Building agents that think β {self.mission}"
