Testimonials

Services

Video meeting . 60 mins

Personalized AI Roadmap + Required AI Tools

Tailored AI plan + Tools for 2w, 1m & 3m
โ‚น5,000
Video meeting . 45 mins

Holistic Wellbeing (Tips & Tricks)

Achieve Well-Being with Practical, Science-Backed Approach
โ‚น2,000
Video meeting . 60 mins
5

Career guidance

1:1 Career Guidance & Growth Strategy Call
โ‚น4,000
Popular
Video meeting . 60 mins
5

Professional Efficiency (Tips & Tricks)

Unlock Your Professional Potential with Expert Guidance
โ‚น4,000
Video meeting . 120 mins

AI Consultation (Discovery & Feasibility call)

Reqs to PRD, plan, timeline, costs & tech stack
โ‚น15,000
Video meeting . 30 mins
5

Exploratory call - Startups

Exploratory Call - Startups: Guidance & Growth Opportunities
โ‚น2,000
Video meeting . 30 mins
5

1:1 AI consultation (Exploratory call)

Explore AI options:LLMs(Claude,GPT etc),Tools & automations
โ‚น2,500

About me

With 25+ years in technology leadership at Microsoft, NTT DATA, and Tech Mahindra, I build cloud-led digital transformation that shows up on the P&L โ€” $75M+ in combined savings and revenue impact, and enterprise delivery for Fortune 500 companies. As former VP of Azure Cloud Solutions at Saxon AI, I drove multi-million-dollar revenue growth. Today, through ZenithWorks.AI, I design production-ready AI agents, RAG pipelines, and automation workflows โ€” and mentor 4,000+ professionals, founders, and CXOs. ๐€๐ฐ๐š๐ซ๐๐ฌ & ๐‘๐ž๐œ๐จ๐ ๐ง๐ข๐ญ๐ข๐จ๐ง: Guinness World Record โ€ข Mastercard 'AI in Business Excellence' 2026 โ€ข FlyHigh Women AI Leadership 2026 โ€ข '10 Inspiring Women to Follow in 2026' (TheWomenStories). Azure (5ร—), AWS, Google, IBM, n8n, Claude (3ร—) certified. IIT-G & ISB. ๐Ÿ) ๐€๐ˆ ๐‚๐จ๐ง๐ฌ๐ฎ๐ฅ๐ญ๐ข๐ง๐  & ๐’๐ญ๐ซ๐š๐ญ๐ž๐ ๐ฒ โ†’ 40% faster time-to-market ๐Ÿ) ๐€๐ˆ ๐’๐š๐š๐’ & ๐ˆ๐ง๐ญ๐ž๐ฅ๐ฅ๐ข๐ ๐ž๐ง๐ญ ๐€๐ ๐ž๐ง๐ญ๐ฌ โ†’ 60% less operational overhead ๐Ÿ‘) ๐–๐จ๐ซ๐ค๐Ÿ๐ฅ๐จ๐ฐ ๐€๐ฎ๐ญ๐จ๐ฆ๐š๐ญ๐ข๐จ๐ง๐ฌ โ†’ 75% less manual processing ๐Ÿ’) ๐‚๐ก๐š๐ญ๐›๐จ๐ญ๐ฌ & ๐•๐จ๐ข๐œ๐ž ๐€๐ฌ๐ฌ๐ข๐ฌ๐ญ๐š๐ง๐ญ๐ฌ โ†’ 85% better response time

Frequently asked questions

How do AI agents work?

An AI agent uses a large language model (LLM) as its "brain" to understand a task, plan the steps required, and then act by calling tools such as search, databases, calendars, or APIs โ€” completing work with minimal human input. Unlike a basic chatbot that only replies to messages, an agent works in a loop: it thinks, takes an action, checks the result, and adjusts until the task is done. Common real-world AI agents examples include support agents that resolve tickets end to end, research agents that compile reports, and sales agents that qualify and follow up with leads automatically.

How to build AI agents as a beginner?

Start with one small, repetitive task โ€” for example, summarising incoming emails and updating a spreadsheet โ€” then connect an LLM to one or two tools using a no-code platform or a framework with function calling. Learn the core building blocks first: system prompts, tool calling, memory, and error handling, before attempting multi-step or multi-agent systems. Beginners in India often progress faster with guided mentorship from someone who has shipped production agents, instead of piecing together random tutorials.

AI agents vs agentic AI โ€” what is the difference?

An AI agent is a single system that autonomously performs a defined task, such as answering customer queries or booking appointments. Agentic AI is the broader paradigm in which systems operate with autonomy, planning, and often multiple agents coordinating with each other to achieve larger goals. In short, "AI agents" usually refers to the individual task-doers, while "agentic AI" describes the overall autonomous, goal-driven approach.

Which AI agents course should a beginner in India choose?

Pick a course that is project-first rather than theory-heavy โ€” you should build at least 2โ€“3 working agents covering tool calling, memory, and RAG. Check that the instructor has real production experience, that there is a certificate, and that you get feedback on your work. Free videos are fine for orientation, but structured programs or 1:1 mentorship from practitioners who have delivered enterprise AI projects significantly shorten the learning curve.

What is a RAG pipeline in AI?

RAG stands for Retrieval-Augmented Generation. In a RAG pipeline, the model first retrieves relevant chunks from your own documents or knowledge base and then generates an answer grounded in that retrieved content. This reduces hallucinations and lets AI answer using your private or up-to-date data without retraining the model.

What is a RAG pipeline used for?

RAG pipelines power knowledge assistants that answer from company documents โ€” customer-support bots trained on manuals, HR and policy Q&A bots, contract and compliance analysis, and internal search across wikis. Indian businesses commonly use them to make SOPs, product catalogues, and regulatory documents instantly queryable by teams and customers.

How to build a RAG pipeline from scratch?

Follow the standard sequence: collect and clean your documents, split them into chunks, convert chunks into embeddings, and store them in a vector database. At query time, retrieve the most relevant chunks, optionally rerank them, and pass them to the LLM with a well-designed prompt. Start with a small document set, test with real questions, and iterate on chunk size and retrieval quality before scaling.

What does a production-ready RAG pipeline architecture look like?

A solid RAG pipeline architecture has distinct layers: ingestion (loaders, chunking, metadata tagging), a vector index for semantic search, hybrid retrieval combining keyword and vector search, a reranker for precision, and an LLM layer with guardrails. Around this core, production systems add access control, caching, latency and cost monitoring, and a feedback loop that captures bad answers for continuous improvement.

How to evaluate a RAG pipeline before going live?

Build a test set of real questions with expected answers, then measure two things separately: retrieval quality (did the pipeline fetch the right chunks?) and generation quality (is the answer faithful to the sources, relevant, and free of hallucinations?). Use evaluation frameworks designed for RAG, track latency and cost per query, and keep monitoring these metrics in production after launch.

What are some good RAG pipeline projects for a portfolio?

Strong portfolio options include a Q&A bot over PDFs (resumes, policies, or product docs), a customer-support assistant grounded in help-centre articles, a contract or legal document summariser, and a multilingual FAQ bot supporting Indian languages. Document the architecture, retrieval metrics, and accuracy improvements for each project โ€” recruiters and clients care more about measured results than demo screenshots.

What is the n8n automation tool, and what is n8n automation used for?

n8n is a source-available workflow automation platform where you connect apps using visual nodes โ€” with 400+ integrations, self-hosting options, and built-in AI agent capabilities. It is used for automating repetitive processes such as lead capture into a CRM, invoice and ERP data sync, WhatsApp and email follow-ups, report generation, and AI-powered chatbots. Indian freelancers and agencies widely use it to deliver automation for client operations at low cost.

How much does n8n automation cost?

Self-hosting n8n is free โ€” you only pay for your server, and a basic cloud VPS in India costs a few hundred rupees per month. n8n's paid cloud plans start at roughly โ‚น2,000 per month, with costs scaling by workflow executions. Remember to budget separately for LLM API usage if your automations use AI steps.

How to learn n8n automation as a complete beginner?

Begin with the official documentation and ready-made templates, and rebuild simple two-three node flows like Gmail-to-Sheet syncing. Then learn webhooks, API calls, and expressions, and progress to AI agent workflows that combine n8n with LLMs. A structured n8n automation course or mentor-guided practice helps most people build the 5โ€“10 real automations needed to become job- or client-ready.

How to sell n8n automation services to clients?

Niche down to one industry (clinics, real estate, D2C brands, coaching businesses), identify their most repetitive manual processes, and offer fixed-price, productised automations with clear ROI in hours and rupees saved. Start with a small paid pilot, document the results as a case study, and convert clients into monthly retainers for maintenance and new workflows. LinkedIn outreach, local business networks, and freelance platforms are the most common client sources in India.

Are there good n8n automation jobs in India?

Yes โ€” demand is rising for roles like automation engineer, AI automation specialist, and workflow developer as startups, agencies, and enterprises adopt AI-driven operations. Pairing n8n skills with AI agents and RAG knowledge makes you far more employable than tool skills alone, and freelancing or building a small automation agency are strong parallel paths. Mentors who have worked in large tech companies can help you position these skills correctly on your resume and in interviews.