HomeSolutions & ServicesInsights & InnovationsAbout UsCareersContact Us
Panabotics InstitutePIAI β€” AI certification paths for developers & business peopleEngineering at PanaboticsHow we build, ship, and run AI systems in production
HomeSolutions & ServicesInsights & InnovationsAbout UsCareersContact Us
Panabotics InstituteEngineering at Panabotics
Get in Touch
PANABOTICS

Intelligent Automation & Agentic AI Solutions designed to elevate your business.

Pakistan (Global Delivery Center) πŸ‡΅πŸ‡°

Lahore, Punjab, Pakistan

info@panabotics.com

Company

  • About Us
  • Careers
  • Contact Us
  • Insights & Blog

Services and Solutions

  • AI Agent Development
  • Custom Software Development
  • Local Business Solutions
  • AI Workflow Automation
  • AI Consulting & Strategy

Industries We Serve

  • Education & E-Learning
  • E-Commerce & Retail
  • Healthcare & Medical
  • Real Estate & Property
  • Hospitality & Travel

Digital Products

  • Panapdf.com
  • Panakit.com
  • Orange Counter
  • SprayMixer App
  • Panaskin (Coming Soon)

Β© 2026 Panabotics. All rights reserved.

Terms and ConditionsPrivacy Policy
The Practitionerβ€”Level 2

The generative AI & RAG course for working developers.

Anyone can call an AI API. You will build systems people rely on β€” retrieval that cites its sources, agents wired to real business tools, and production LLM backends. Level 1 or equivalent required.

There is a canyon between β€œI made a chatbot” and β€œI built the AI assistant a company runs its support desk on.” On one side: demos. On the other: retrieval over real data, agents that operate real tools, answers with citations, and costs you can defend to a CFO. This level takes you across that canyon β€” the same ground Panabotics covers in client work every week.

Step Up to AI Developer

PKR 100,000Β·Pakistan|$115 / Β£90Β·International

PCAD

The Practitionerβ€”Level 2

Panabotics Institute of Artificial IntelligencePIAI
PCADCertified
On completion, certified asPanabotics Certified AI DeveloperAwarded only for finishing the capstone and certificate assessment β€” not for watching videos.
Official Credential Β· Panabotics
Level
Intermediate Β· Level 1 or equivalent required
Duration
10 weeks Β· 60 live hours
Format
Live online classes
Schedule
Saturday & Sunday, 15:00–18:00 PKT
Language
Taught in English with Urdu explanation
Coursework
55+ video lessons Β· 8 hands-on projects
Fee
PKR 100,000
Certificate
PCAD β€” on assessment
Who you become

The Practitioner, defined

A practitioner is the person a team turns to when they say β€œcan we get AI to do this β€” properly?” You will design retrieval pipelines over messy real-world data, wire agents to calendars, databases and inboxes, control hallucinations instead of hoping they don't happen, and hand over work that keeps running after you leave the room. This is the level where AI stops being your hobby and becomes your profession.

Chatbots that only know their promptRAG systems that answer from a company's actual data β€” with citations
Copy-pasting between AI and your other toolsAgents that operate calendars, email, and databases on their own
β€œIt usually gives the right answer”Measured retrieval quality, controlled hallucinations, engineered costs
Portfolio piecesClient-grade systems you could invoice for
The Path

How the 10 weeks unfold

Ten weeks from LLM APIs to client-grade systems β€” production prompting, AI backends, data layers, full-stack chat UX, retrieval that cites sources, tool-using agents wired to real business apps, then deploy and operate what you ship.

01
AI Application Development

Modern LLM StackPython

Multi-provider LLM APIs β€” OpenAI, Anthropic, Gemini, Groq, OpenRouterStreaming responses (SSE) vs request/responseStructured outputs & JSON schema enforcementTool / function schemas at the API layerModel selection β€” latency, cost, quality trade-offsProvider routing & fallback strategiesToken accounting, pricing, and usage budgetsIdempotency, retries, and timeout design for LLM calls
AssignmentBenchmark 3 providers on the same SaaS task (e.g. support-reply drafting) β€” measure latency, cost per 1k calls, and output quality with a fixed rubric.
Mini ProjectMulti-Model Gateway β€” a small FastAPI service that routes a business prompt to the cheapest model that meets a quality threshold, with streaming and structured JSON responses.
Critical Thinking
  • When is a smaller/faster model the correct production choice even if a frontier model scores higher on a demo?
Case Study
How product teams choose OpenAI vs Anthropic vs Gemini for support copilots vs extraction pipelines
02
AI Application Development

Prompt Systems & Guardrails

System prompts as product contracts, not magic stringsFew-shot libraries & example curation for business domainsChain-of-thought, decomposition, and constrained generationOutput parsers & schema-first promptingPrompt versioning, A/B testing, and regression checksSafety & policy guardrails (input/output filters)PII handling, redaction, and tenant-safe promptingEvaluating prompts with golden sets and LLM-as-judge (pragmatically)
AssignmentDesign a versioned prompt pack for one SaaS workflow (lead qualification, invoice FAQ, or HR policy Q&A) β€” include system prompt, few-shots, refusal rules, and a 20-case eval set.
Mini ProjectAI Writing Copilot for a real niche (agency proposals, clinic patient emails, or e-commerce product copy) β€” with guardrails, tone controls, and a simple prompt-eval report.
Critical Thinking
  • What belongs in the system prompt vs retrieval context vs application code?
Case Study
How production support assistants prevent policy-breaking answers without killing usefulness
03
AI Application Development

AI Backend ArchitecturePython

FastAPI patterns for AI products β€” routers, deps, lifespanAsync I/O for concurrent LLM and DB callsStreaming endpoints (SSE) for chat UIsRequest validation with Pydantic for AI payloadsAuth for AI APIs β€” API keys, JWT, tenant scopingError contracts, retries, and graceful degradationWebhooks & outbound events (e.g. ticket created β†’ AI summary)Background jobs for long-running AI work (queues intro)
AssignmentSpec and implement an authenticated AI API for a business resource β€” chat sessions, document jobs, or enrichment tasks β€” with clear error codes and usage limits per key.
Mini ProjectSaaS AI API β€” e.g. Support Ticket Summarizer or Lead Enrichment service with API-key auth, streaming where useful, and webhook callback when a job finishes.
Critical Thinking
  • What should be synchronous vs queued in an AI product, and how do you communicate that to the client UI?
04
AI Application Development

Databases for AI ProductsPython

Relational modeling for AI apps β€” users, tenants, sessions, messagesPostgreSQL fundamentals for product backendsSupabase (or equivalent) for auth + Postgres in practiceORMs & migrations (SQLAlchemy / Prisma-style workflows)CRUD for conversations, documents, and job statusStoring prompts, model metadata, and usage for auditabilityMulti-tenant data isolation basicsWhen to add a vector column vs a separate vector store
AssignmentDesign a schema for a multi-tenant AI product (notes, knowledge base, or support desk) β€” tables, indexes, tenant keys, and what you log per LLM call.
Mini ProjectAI Notes / Knowledge Vault β€” authenticated users, CRUD for notes & folders, chat history persisted in Postgres, ready to plug into RAG later.
Critical Thinking
  • What AI-generated content must be stored for compliance vs what should be ephemeral?
Case Study
How Notion / Linear-style products model workspaces, documents, and activity history
05
AI Application Development

Full-Stack AI InterfacesTypeScript

HTML/CSS/JS essentials for AI product UIsReact component patterns for chat & formsNext.js app structure for AI SaaS frontendsStreaming chat UX β€” tokens on screen, stop/retryConversation state, threads, and optimistic UIFile upload flows for documents (prep for RAG)Auth-aware frontends talking to your AI APIAccessibility & empty/error states that keep trust
AssignmentWire a production-style chat UI to your Level-2 backend β€” streaming, thread list, loading/error states, and a clear handoff when the model refuses.
Mini ProjectBusiness Chat Console β€” a Next.js front end for an internal or customer-facing assistant (support, sales FAQ, or ops helper) with sessions and streaming replies.
Critical Thinking
  • How does UI design reduce hallucination risk (citations, confidence, "I don't know" states)?
06
AI Systems Engineering

RAG Systems EngineeringPython

Embeddings β€” models, dimensions, and similarity metricsDocument ingestion pipelines (PDF, DOCX, web, CSV)Chunking strategies β€” size, overlap, structure-aware splitsVector databases β€” pgvector, Pinecone, Qdrant (concept + one hands-on)Hybrid retrieval β€” dense + keyword / metadata filtersRe-ranking and context assembly for the LLMCitations, source grounding, and refusal when evidence is weakRAG evaluation β€” retrieval hit-rate, faithfulness, answer relevanceCost & latency control in retrieval pipelines
AssignmentBuild an ingestion + retrieval report for a real corpus (company handbook, product docs, or SOP pack) β€” compare 2 chunking strategies on a fixed question set.
Mini ProjectDocument Intelligence Chatbot β€” upload business docs, retrieve with citations, answer only from sources, and show which chunks grounded each reply.
Critical Thinking
  • When does RAG fail silently, and what product signals tell the user the answer is ungrounded?
Case Study
How enterprise "chat with your docs" products handle permissions, freshness, and citation UX
07
AI Systems Engineering

Tool-Using Agents & IntegrationsPython

From chatbot to agent β€” planning a single-agent tool loopReliable function calling & tool result handlingConnecting business systems β€” calendars, email, CRM, databasesIdempotent tools and safe side effects (confirm before write)Human-in-the-loop checkpoints for irreversible actionsMemory for agents β€” session vs durable business stateFailure modes β€” loops, partial tool success, and recoveryObservability for tool traces (what the agent did and why)
AssignmentSpecify 4 tools for a real ops agent (e.g. booking, CRM lookup, email draft, ticket update) β€” schemas, auth, success/failure contracts, and which actions need human approval.
Mini ProjectOps Automation Agent β€” a single agent that helps a real workflow (clinic bookings, store order follow-ups, or freelance CRM) using 2–4 live or stubbed tools with a confirmation step before writes.
Critical Thinking
  • What is the difference between a tool-using assistant and a multi-agent system β€” and when is one agent enough?
Case Study
How support and ops copilots gate destructive actions (refunds, deletes, sends) in production
08
Production AI & MLOps

Deployment & Production Engineering

Capstone
Containerizing AI apps with DockerLinux basics for operatorsGitHub Actions CI β€” lint, test, buildDeploy targets β€” Vercel, Railway, Render, AWS basicsSecrets, env management, and config per environmentLogging, metrics, and tracing for LLM callsRate limiting, caching, and cost ceilingsSecurity β€” prompt injection awareness, key hygiene, tenant isolationIncident basics β€” rollbacks, kill switches, status communication
AssignmentProduce a production checklist for your AI product β€” SLOs, cost budget, logging fields, rate limits, and a kill-switch plan if the model misbehaves.
Mini ProjectDeploy your AI app end to end with CI, secrets, health checks, and basic usage/cost logging visible in a dashboard or log stream.
Critical Thinking
  • Which failures are model failures vs system failures β€” and how should on-call treat each?
Case Study
Cost incidents in LLM products β€” how teams add caching, smaller models, and hard budgets after a surprise bill
Final Capstone

Ship one client-grade system end to end β€” a document-intelligence product, a support agent grounded in company knowledge, an internal knowledge assistant, or an AI feature inside a SaaS workflow β€” deployed, observable, cost-aware, and defended for certification.

After Graduation

What you can build & do

After this level, these are things you quote for β€” not things you Google:

Document-intelligence & β€œchat with your data” products
Support agents grounded in a company's knowledge base
Internal knowledge assistants for teams
AI features inside existing SaaS products
Automation agents wired to real business tools
Freelance-ready client AI work
The Credential

Proof that means something

PCAD
Panabotics Institute of Artificial IntelligencePIAI
PCADCertified
This certifies the holder asPanabotics Certified AI DeveloperAwarded on completion of the capstone and certificate assessment β€” not for watching videos.
Official Credential Β· Panabotics

Prerequisites

Panabotics Certified AI Foundations Developer (PCAFD) β€” or comfortable Python plus at least one shipped LLM API project.

Your investment

PKR 100,000Pakistan
$115USD
Β£90GBP

One payment Β· 10 weeks Β· 55+ video lessons Β· 8 hands-on projects

How admission works

Four-step selection process

Every PIAI seat is reviewed. Submit once β€” we guide you from application to selection.

  1. 01

    Submit Application

    Share your details, LinkedIn, and CV for the program you want to join.

  2. 02

    Review Application

    Our PIAI team reviews fit, readiness, and prerequisites for your chosen track.

  3. 03

    Interview

    A short conversation to confirm goals, commitment, and whether this is the right level.

  4. 04

    Selection

    Accepted applicants receive an offer with next steps to enroll and start.

Before you apply

Questions people actually ask

Fees, schedule, language, prerequisites, and what the credential is worth β€” answered plainly, including the answers that might talk you out of applying.

You need Level 1 or equivalent experience. If you already write Python comfortably and have shipped at least one project using an LLM API, you can apply directly β€” the admissions interview exists to confirm that. If you have never called an AI API from code, start with Foundations instead; this level moves too fast otherwise.

No, and that distinction matters. This is applied generative AI engineering: you use existing frontier models rather than training your own. There is no regression, classification, or neural-network training here. What you learn instead is how to build production systems around LLMs β€” retrieval, agents, evaluation, and cost control.

RAG β€” retrieval-augmented generation β€” is how you make an AI answer from a company's own documents instead of only its training data. Module 6 is dedicated to it, and you will build retrieval pipelines with embeddings and vector databases that return answers with citations, then measure whether that retrieval is actually any good.

The fee is PKR 100,000 in Pakistan, or $115 / Β£90 internationally, covering all 10 weeks, 55+ video lessons, 8 hands-on projects, and the PCAD certificate assessment. This level is payable in full β€” installment plans are not offered at Level 2 β€” and fees are non-refundable once enrollment is confirmed.

Ten weeks, with live classes every Saturday and Sunday from 3:00pm to 6:00pm Pakistan Standard Time β€” 6 live hours per week and 60 hours in total. All classes are online, so you can join from Lahore, Karachi, Islamabad, or anywhere with a reliable connection. Expect substantial work between sessions.

You work across multiple providers rather than being locked to one: OpenAI, Anthropic, Gemini, Groq, and OpenRouter, including provider routing and fallback. On the engineering side you build with Python, FastAPI, Pydantic, vector databases, and full-stack chat interfaces, then deploy and operate what you ship.

Eight projects that read as client work rather than tutorials β€” a multi-model gateway that routes prompts by cost and quality, a versioned prompt system with guardrails, an authenticated AI API with webhooks, a RAG system that cites its sources, and agents wired to real tools like calendars, email, and databases.

It gives you the work that makes those conversations possible β€” deployed systems, measured retrieval quality, and defensible cost engineering are what buyers and hiring managers actually probe. We do not promise placement, and any provider who guarantees a job for a fee is worth being suspicious of.

Classes are taught in English with Urdu explanation. At this level the vocabulary matters β€” embeddings, chunking, idempotency, tenancy β€” so terms stay in English exactly as you will meet them in documentation and code review, while the reasoning behind them gets explained in the language you think in.

Level 2 makes you the person who builds AI systems a business depends on. Level 3 β€” Agentic AI Engineer β€” makes you the person who architects and operates them at product scale: multi-tenant system design, production AWS, event-driven backends, MCP integrations, and the evals and security to leave agents running unattended.

You earn the Panabotics Certified AI Developer (PCAD) credential, awarded on assessment rather than attendance. You must ship the capstone and defend it. Its value comes from the fact that it cannot be obtained by watching videos β€” the systems behind it are the actual portfolio.

Apply now

Start your application

Tell us who you are and why you want Panabotics Certified AI Developer. We review every application personally before inviting you to the next step.

  • Reviewed by the PIAI admissions team
  • Shortlisted applicants are invited to interview
  • Clear next steps by email after we review

Applying for: Panabotics Certified AI Developer

Where this leadsLevel 3 β€” Agentic AI EngineerWhen your systems work while you watch, the final level teaches them to work while you sleep.

The only difference between you and the Practitioner is the decision to start

10 weeks. 8 hands-on projects. One credential β€” PCAD. Talk to us and we'll help you decide if this is your level.

Step Up to AI DeveloperCompare All Levels