AI / ML Engineer · Software Developer · Sydney

Shreeshailya Patil

  • ML Engineer
  • AI Engineer
  • Software Engineer

I ship production GenAI systems end to end: on-prem LLM assistants, low-latency RAG retrieval, agentic pipelines and MLOps with real SLOs. Python, TypeScript, C++ and Java under the hood, with a habit of measuring before claiming: Redis query-path caching, FAISS index tuning, quantized inference on vLLM. Currently completing a Master of Artificial Intelligence at UTS in Sydney.

  • Master of Artificial Intelligence at UTS, 2026 to 2027
  • Researching federated fraud detection, first author on a conference manuscript
  • Open to internships and graduate roles in AI, ML and software, Sydney or remote

Projects

Cross-Bank Fraud Detection, Federated Learning + Mixture-of-Experts

Mar 2026 to present

Research · ML

Four-person UTS research project on privacy-preserving fraud detection across simulated banks. I initiated and architected it, wrote the core federated engine and the triage layer, and am first author on the six-page conference manuscript. Mixture-of-Experts gates over per-bank gradient-boosted experts and FL-trained global models beat the FL family by +0.0115 AUPRC (p = 0.030).

Figure 1 from the manuscript: per-bank tree specialists, federated MLP backbone aggregation across banks, and a Mixture-of-Experts gate at inference that outputs the fraud score
Fig. 1 of the manuscript: the three-phase expert-fusion pipeline
FL algorithms
6
Datasets, 3 non-IID levels
5
AUPRC over FL (p = 0.030)
+0.0115
  • Six FL algorithms across five transaction datasets (including IBM AML and synthetic AML) at three Dirichlet heterogeneity levels
  • Differential privacy, gradient clipping and Byzantine-client filtering evaluated per algorithm
  • Triage layer: per-expert calibration, per-bank conformal miss-rate guarantee, cost-optimal threshold, budgeted deferral under analyst capacity
  • AUPRC instead of ROC-AUC because the fraud base rate is 0.17 percent (492 frauds in 284,807 transactions)
  • Five-seed reproducibility with Wilcoxon signed-rank tests and an order-independent partitioning fix
  • Retracted a headline result that failed to reproduce under the corrected pipeline rather than publishing it
  • Python
  • PyTorch
  • Federated Learning
  • Differential Privacy
  • XGBoost
  • LightGBM
  • CatBoost
  • Streamlit

TradeOps Console

2026

AI Agents · RAG

Four working AI agents for a trade operations desk: PDF invoice extraction, inbox triage, compliance pre-check and trade Q&A with retrieval over an in-repo knowledge base and inline citations. Reasoning streams token by token and tool calls render as cards as they happen.

TradeOps Console Trade Q&A screen: a question about FOB versus FCA on the left and a search_corpus tool-call card with its JSON input and retrieved chunks on the right
Trade Q&A agent: tool calls render as cards while the answer streams
Agents, all live
4
Automated tests, 28 files
327
  • Invoice Extractor, Inbox Triager, Compliance Pre-Check and Trade Q&A built on the AI SDK with Gemini 2.5 Flash
  • Trade Q&A performs RAG over an in-repo knowledge base and cites its sources inline
  • Per-IP and per-day rate limiting on Vercel KV with fail-open semantics
  • Structured JSON logging to Axiom with PII redaction and trace ID propagation
  • Dual-flavour response cache, strict TypeScript, four-check CI gate on main
  • 327 tests across 28 files
  • Next.js 16
  • TypeScript
  • AI SDK v6
  • Gemini 2.5 Flash
  • Vercel KV
  • Axiom
  • Vitest
  • Vercel

Selec AI, Low-Latency On-Prem LLM Inference

Feb 2025 to Nov 2025

ML · LLM · RAG

Air-gapped LLM assistant for regulatory-compliant industrial document Q&A, built at SELEC Controls. A modular agent (retrieval, inference, memory, fallback) serves quantized models with vLLM behind a Flask API, with zero external network calls.

Median retrieval latency
120 to 45 ms
Recall held
> 0.9
External API calls
0
  • Benchmarked FAISS index strategies for latency and recall: median retrieval 120 ms down to 45 ms at recall above 0.9
  • vLLM serving quantized GGUF models under strict latency budgets on constrained hardware
  • Object-oriented agent architecture with separated retrieval, inference, memory and fallback concerns
  • Flask REST API with Redis cache deployed via Docker and Kubernetes
  • Fully air-gapped: zero external network calls for regulatory compliance
  • Prometheus / Grafana observability with SLI / SLO alerting rules
  • Python
  • vLLM
  • FAISS
  • LangChain
  • LangGraph
  • Flask
  • Redis
  • Docker
  • Kubernetes
  • Prometheus
  • Grafana

DevTrack, Agentic Job Intelligence API

2026

Backend · Agents

A job-application API with a Python LangGraph agent microservice that turns an application record into structured intelligence: gap analysis, talking points and an inspectable per-run execution trace. The agent service runs live on Render; the whole stack costs nothing (Groq, Neon Postgres, Upstash Redis).

DevTrack Agents Swagger UI listing POST /agents/analyze, GET /agents/runs/{run_id} and GET /health
The agent microservice, live on Render with OpenAPI docs
Graph nodes per run
4
Monthly hosting cost
$0
  • Four-node LangGraph StateGraph: fetch_profile, fetch_jd, gap_analysis, talking_points
  • Circuit breaker and multi-provider LLM routing with normalised token tracking
  • Per-IP and per-day rate limiting on Upstash Redis with fail-open semantics
  • Structured JSON logging with PII redaction and trace ID propagation
  • Joi validation on every API boundary, strict TypeScript, four-check CI gate
  • Agent microservice deployed to Render with OpenAPI docs and a health endpoint
  • Node.js
  • Express
  • TypeScript
  • Python
  • FastAPI
  • LangGraph
  • Groq
  • Gemini
  • Neon Postgres
  • Upstash Redis
  • Render

SELEC Vision Inspection, YOLO Defect Detection on the Edge

Aug 2024 to Nov 2025

ML · Computer Vision · Edge

End-to-end computer-vision system for automated defect detection on power boards in the production QA jig at SELEC Controls: industrial camera and LED rig on a Raspberry Pi 5, preprocessing, YOLO inference exported to ONNX, defect identification and a production pass / quarantine decision, with CI-driven retraining.

Precision
92.6%
Recall
95.2%
mAP@50 (YOLOv5n)
94.2
  • Curated, annotated, balanced and augmented a 2,423-image dataset; benchmarked YOLOv5, YOLOv7 and YOLOv5n
  • Production checkpoint at 92.6 percent precision, 95.2 percent recall, mAP@50 94.2 and mAP@50-95 78.6
  • ONNX export for edge inference on a Raspberry Pi 5 with an industrial camera on the physical inspection jig
  • Concourse CI, AWS S3, SageMaker and Airflow pipelines automate retraining and redeployment to edge devices
  • Worked with production teams on root-cause analysis of real defects and batch quarantine decisions
  • Python
  • PyTorch
  • YOLOv5
  • OpenCV
  • ONNX
  • CUDA
  • Raspberry Pi
  • AWS SageMaker
  • S3
  • Concourse CI
  • Airflow

Hearth, Funding Radar + ML Recommender

2026

ML · Full stack

Phase 4 of Fishburners’ grants and accelerator discovery platform for women founders. A hybrid recommender ranks opportunities against each founder’s stage, sector, geography and capital need, and an LLM layer explains why each one ranks where it does, surfaces deadline conflicts and drafts founder-facing nudges.

Hearth landing page: Funding, curated for women founders, with 135 active opportunities and a request-access button
Hearth, invite-only for the Fishburners community: 135 active opportunities, refreshed daily
Funding sources scraped
9
Active opportunities (Aug 2026)
135
  • Content-based retrieval over opportunity metadata plus collaborative signals from founder engagement
  • LLM layer explains rankings, flags deadline conflicts and drafts nudges inside a Next.js API route
  • Python scraper pipeline feeds nine grant and fellowship sources with de-duplication
  • Supabase Postgres with Auth and row-level security, Sentry observability, Slack alerts on high-fit matches
  • Next.js 14
  • TypeScript
  • Supabase
  • Python
  • Recharts
  • Sentry
  • Vercel

More projects

Organ Donation Management System, Blockchain Ledger + IPFS

2023

Bachelor’s honours project: organ donation and transplant matching on Ethereum. An OrganChain Solidity contract suite keeps an append-only, auditable ledger of donor, recipient and hospital records; patient documents live off-chain on IPFS with content-addressed hashes on-chain, and a hospital-facing web app drives registration, matching and status tracking.

  • Solidity
  • Ethereum
  • IPFS
  • JavaScript
  • Web3

Serverless ETL / ELT Pipeline

Sep 2024

Serverless AWS pipeline replacing a legacy SSIS workflow: incremental ingestion of structured and semi-structured sources, PySpark transformation on Glue, idempotent loading with completeness, correctness and schema checks on every run, orchestrated by Step Functions with retries.

  • AWS Glue
  • Lambda
  • Step Functions
  • PySpark
  • S3
  • Python

Event-Driven Notification System

Feb 2024

Queue-backed notification pipeline decoupling producers and consumers: concurrent workers, exponential-backoff retries with dead-letter queues, idempotent handlers with acknowledgement-based consumption, and Prometheus / Grafana dashboards for queue depth, latency and failure rates.

  • Python
  • Redis
  • RabbitMQ
  • Docker
  • Prometheus
  • Grafana

anthea, flowers that open at the wave of a hand

2026

Webcam hand-gesture flower controller. MediaPipe tracks the hand; a sunflower, a blue rose and a spider lily bloom, fold, follow and grow in response, every petal drawn live from maths with no images or 3D files.

  • Python
  • MediaPipe
  • OpenCV

LUNA Desktop Assistant

2023

Voice and text desktop assistant that interprets spoken or written instructions and executes tasks on the machine.

  • Python
  • Speech recognition

Experience

Fishburners

AI Intern

Mar 2026 to Jun 2026

Sydney, Australia

  • Built an agentic content pipeline that turns raw partner decks, videos and PDFs into structured learning modules for The Ascent Project, Australia’s national capital-education program for women founders: five specialist sub-agents (chapter architect, research extractor, content writer, QA reviewer, packager) chained through a nine-step workflow with automated pre-QA.
  • Shipped Stages 1 to 5 plus quiz content for all 39 chapters (six phases, 30+ specialist partners) of the Year Two scale-up from 200 to 500 to 1,000 learners, each chapter benchmarked against 2023 to 2026 research and mapped to an internal depth framework.
  • Built Hearth Phase 4, an ML opportunity recommender on the existing Next.js / Supabase funding platform: hybrid retrieval plus collaborative filtering ranks grants, accelerators and VC programs against each founder’s profile, with an LLM reasoning layer explaining the ranked shortlist.
  • Maintained the single source of truth across Notion and local project status files (offline files, platform builds, partner intake, blockers) so the pipeline could scale beyond one intern.

SELEC Controls Pvt. Ltd.

ML Design Engineer

Aug 2024 to Nov 2025

Navi Mumbai, India

  • Designed and deployed a high-throughput REST API (Flask + PostgreSQL) serving real-time vector-search queries via FAISS, containerised with Docker and orchestrated on Kubernetes for zero-downtime production deployments.
  • Implemented Redis caching on high-frequency query paths, cutting API response latency by about 40 percent under concurrent load.
  • Built automated data ingestion and processing pipelines on AWS S3 and SageMaker with systematic validation at every stage.
  • Architected an air-gapped ML inference system using quantized LLMs (GGUF via vLLM) under strict latency SLAs; applied OOP design patterns across the LangChain / LangGraph agent architecture so every component is modular, testable and extensible.
  • Integrated Prometheus and Grafana for system-wide observability; defined SLI / SLO thresholds and alerting logic for always-on production systems.
  • Engineered a real-time YOLO-based computer-vision system deployed on edge devices, optimising the inference pipeline for speed and accuracy under constrained compute.

Capgemini

Software Development Intern

Jan 2023 to Mar 2023

Airoli, India

  • Built a production-ready full-stack web application (Angular.js frontend, Node.js / Express backend) with 5+ RESTful endpoints, structured request validation, middleware error handling and regression tests before each release.
  • Designed and optimised a normalised MySQL schema with parameterised queries and connection pooling to handle concurrent requests efficiently and prevent SQL injection.
  • Integrated PingID multi-factor authentication, lifting login security compliance by 50 percent; authored test plans for auth flows, token-expiry edge cases and session-management failures.
  • Profiled and tuned the Apache server configuration, reducing outages by 40 percent and page-load times by 20 percent through optimised caching headers and connection settings.

Tata Consultancy Services

Analyst (Virtual Experience)

May 2023

Remote

  • Conducted multi-dimensional analytics and revenue KPI analysis using root-cause techniques and statistical methods, turning structured data into actionable business insights.
  • Designed and automated Power BI dashboards with geospatial views for multi-region revenue benchmarking, cutting stakeholder data-retrieval time by 35 percent.
  • Delivered analytical reports to senior stakeholders in clear, non-technical language, informing data-driven initiatives across regions.

Open Source

Public repositories, newest push first. Research code, agent systems, undergraduate hardware projects and this site.

Loading repositories from GitHub

Fetching repositories...

Skills

Languages

  • Python
  • TypeScript
  • JavaScript (ES6+)
  • Java
  • C++
  • SQL
  • Solidity
  • Shell / Bash

ML and Data Science

  • PyTorch
  • TensorFlow
  • scikit-learn
  • Pandas / NumPy
  • Federated Learning
  • Differential Privacy
  • Recommender systems
  • YOLO / Computer Vision
  • Multi-seed evaluation, Wilcoxon tests

LLM Systems and Agents

  • LangChain
  • LangGraph
  • Multi-agent orchestration
  • RAG
  • vLLM
  • FAISS
  • Quantized inference (GGUF)
  • LLM provider APIs
  • Tool calling

Backend and Web

  • Node.js
  • Express
  • FastAPI
  • Flask
  • Django
  • Next.js (App Router)
  • React
  • REST APIs
  • Microservices

Data and Cloud

  • PostgreSQL
  • Supabase
  • MySQL
  • MongoDB
  • Redis
  • PySpark
  • Airflow
  • AWS (S3, Glue, Lambda, SageMaker)
  • GCP
  • Azure
  • Vercel

DevOps, Observability and Quality

  • Docker
  • Kubernetes
  • GitHub Actions
  • Concourse CI
  • Linux
  • Nginx
  • Prometheus
  • Grafana
  • Sentry
  • Vitest / Jest / pytest

Education

Master of Artificial Intelligence

University of Technology Sydney

Sydney, Australia

2026 to 2027In progress
  • Coursework: Neural Networks and Fuzzy Logic, Reasoning Under Uncertainty, Advanced Machine Learning, Deep Learning Systems, Natural Language Processing, Distributed Computing for AI.
  • Research: federated expert-fusion for cross-bank fraud detection (first-author conference manuscript).

B.E. Electronics and Computer Engineering

Fr. C. Rodrigues College of Engineering, University of Mumbai

Navi Mumbai, India

2020 to 2024CGPA 8.49 / 10
  • Honours project in blockchain systems: Ethereum smart contracts and IPFS (Organ Donation Management System).
  • Modules: Statistics and Probability, Linear Algebra, Data Structures and Algorithms, Multithreading and Concurrent Programming, Algorithmic Complexity Analysis.

Certifications

  • Google Cloud Computing FoundationsGoogle, 2024Four-course specialisation: Cloud Computing Fundamentals; Infrastructure in Google Cloud; Networking and Security; Data, ML and AI in Google Cloud.
  • Project Cell, ML MemberFr. C. Rodrigues College of Engineering, 2023Built ML analysis workflows (Linear and Logistic Regression, K-Means, Random Forests) and optimised preprocessing pipelines for a 15 percent reduction in model-training time.

Research

  • A Federated Expert-Fusion Framework for Cross-Bank Fraud DetectionSix-page conference manuscript, first author with four UTS co-authors, 2026. PDF in the project repository.Mixture-of-Experts gating over per-bank gradient-boosted experts and federated global models, benchmarked under Dirichlet non-IID splits across five seeds (516 reproducible runs in the manuscript), with a cost-aware triage layer that turns rankings into auto-clear, flag or defer decisions. Wilcoxon-tested and reproducible per experiment cell.

Let's build
something.

Open to internships and graduate roles in AI, ML and software engineering. Sydney, hybrid or remote.

Student visa with Australian work rights. Eligible for the 485 Temporary Graduate visa on completing the Master of AI in 2027.