|
| 1 | +// ========================================== |
| 2 | +// 1. CONFIGURATION & THEME |
| 3 | +// ========================================== |
| 4 | + |
| 5 | +// Define strictly Black & White |
| 6 | +#let accent_color = black |
| 7 | +#let body_color = rgb("#000000") |
| 8 | + |
| 9 | +// Page setup |
| 10 | +#set page( |
| 11 | + paper: "a4", |
| 12 | + margin: (x: 1.25cm, y: 1.25cm), |
| 13 | +) |
| 14 | + |
| 15 | +// Font setup: Lato |
| 16 | +#set text( |
| 17 | + font: ("Lato", "Roboto", "Arial"), |
| 18 | + size: 10pt, |
| 19 | + fill: body_color, |
| 20 | + lang: "en" |
| 21 | +) |
| 22 | + |
| 23 | +// SPACING ADJUSTMENT HERE: |
| 24 | +#set par(justify: true, leading: 0.45em) |
| 25 | + |
| 26 | +// Link styling |
| 27 | +#show link: it =>[ |
| 28 | + #set text(fill: black) |
| 29 | + #underline(offset: 2pt, stroke: 0.5pt + black, it) |
| 30 | +] |
| 31 | + |
| 32 | +// Heading styling |
| 33 | +#show heading.where(level: 1): it =>[ |
| 34 | + #v(0.8em) |
| 35 | + #set text(size: 12pt, weight: "black", font: "Lato") |
| 36 | + #upper(it.body) |
| 37 | + #v(-0.7em) |
| 38 | + #line(length: 100%, stroke: 1pt + black) |
| 39 | + #v(0.3em) |
| 40 | +] |
| 41 | + |
| 42 | +// ========================================== |
| 43 | +// 2. HELPER FUNCTIONS |
| 44 | +// ========================================== |
| 45 | + |
| 46 | +#let resume_entry(title, date, company, location, content) = { |
| 47 | + pad(bottom: 4pt, block[ |
| 48 | + #grid( |
| 49 | + columns: (1fr, auto), |
| 50 | + align: (left, right), |
| 51 | + text(weight: "bold", size: 11pt, title), |
| 52 | + text(style: "italic", date) |
| 53 | + ) |
| 54 | + #v(-5pt) |
| 55 | + #grid( |
| 56 | + columns: (1fr, auto), |
| 57 | + align: (left, right), |
| 58 | + text(style: "italic", weight: "medium", company), |
| 59 | + text(size: 9pt, location) |
| 60 | + ) |
| 61 | + #v(2pt) |
| 62 | + #set list(indent: 1em, marker: [•]) |
| 63 | + #content |
| 64 | + ]) |
| 65 | +} |
| 66 | + |
| 67 | +#let project_entry(title, subtitle, content) = { |
| 68 | + pad(bottom: 4pt, block[ |
| 69 | + #text(weight: "bold", size: 10.5pt, title) | #text(style: "italic", subtitle) |
| 70 | + #v(2pt) |
| 71 | + #set list(indent: 1em, marker: [•]) |
| 72 | + #content |
| 73 | + ]) |
| 74 | +} |
| 75 | + |
| 76 | +#let skill_group(category, skills) = { |
| 77 | + text(weight: "bold", category) + [: ] + skills + linebreak() |
| 78 | +} |
| 79 | + |
| 80 | +// ========================================== |
| 81 | +// 3. DOCUMENT CONTENT |
| 82 | +// ========================================== |
| 83 | + |
| 84 | +// --- HEADER --- |
| 85 | +#align(center)[ |
| 86 | + #text(size: 24pt, weight: "bold")[NEEL SHIRISH MORE] \ |
| 87 | + #v(2pt) |
| 88 | + #text(size: 11pt, weight: "bold")[PYTHON AI ENGINEER] \ |
| 89 | + #v(2pt) |
| 90 | + #show link: it => it |
| 91 | + Liverpool, UK | Graduate Visa (Valid until Aug 2027) | +44 7393 063 988 | #link("mailto:neelmore007@gmail.com")[neelmore007\@gmail.com] \ |
| 92 | + #v(1pt) |
| 93 | + #link("https://www.linkedin.com/in/neel-more-ai/")[Linkedin] | #link("https://github.com/NeelM47")[Github] | #link("https://neelm47.github.io/")[Portfolio] |
| 94 | +] |
| 95 | + |
| 96 | +// --- SUMMARY --- |
| 97 | += Professional Summary |
| 98 | +University of Manchester (MSc AI) graduate specialized in Python-driven AI engineering and cloud-native application development. Adept at architecting scalable LLM solutions, multi-agent workflows (LangChain, LangGraph), and Retrieval-Augmented Generation (RAG) systems. Experienced in bridging development and production by deploying machine learning models via Azure CI/CD pipelines, implementing rigorous LLM observability, and building enterprise-grade data architectures. Brings applied domain knowledge in financial services, algorithmic optimization, and banking systems. |
| 99 | + |
| 100 | +// --- SKILLS --- |
| 101 | += Technical Skills |
| 102 | +#pad(x: 0.5em)[ |
| 103 | + #skill_group("AI & Engineering", "Python, LangChain, LangGraph, LLM Observability & Evaluation, RAG Architectures, Agentic Workflows, PyTorch.") |
| 104 | + #skill_group("Cloud & Ecosystem", "Microsoft Azure (OpenAI, Functions, Storage, AKS), Cloud-Native Dev, AWS, Docker, API Systems.") |
| 105 | + #skill_group("Data & Databases", "Vector DBs (FAISS, ChromaDB), Graph DBs (Neo4j), Data Structures, Algorithms, SQL, PostgreSQL.") |
| 106 | + #skill_group("DevOps & Delivery", "Azure DevOps, CI/CD Pipelines, LangSmith, Git/GitHub, Responsible AI Governance, Agile/Scrum.") |
| 107 | +] |
| 108 | + |
| 109 | +// --- EXPERIENCE --- |
| 110 | += Experience |
| 111 | + |
| 112 | +#resume_entry( |
| 113 | + "Python AI Engineer & Consultant", |
| 114 | + "Dec 2025 – Present", |
| 115 | + "RTN Zero Consulting", |
| 116 | + "Manchester, UK",[ |
| 117 | + - Engineered scalable, LLM-based multi-agent workflows using Python and LangChain to forecast revenue and generate actionable AI insights. |
| 118 | + - Integrated machine learning models into production systems, implementing LLM observability, prompt monitoring, and evaluation metrics to ensure model performance. |
| 119 | + - Streamlined secure data-AI pipelines and API-based integrations for certification compliance, supporting continuous improvement through rapid prototyping. |
| 120 | + ] |
| 121 | +) |
| 122 | + |
| 123 | +#resume_entry( |
| 124 | + "Data Analyst (Data Engineering & DevOps Focus)", |
| 125 | + "Sept 2023 – Oct 2025", |
| 126 | + "Subtle Solutions", |
| 127 | + "India (Remote)",[ |
| 128 | + - Developed end-to-end Python data pipelines, migrating large-scale commercial data into centralized cloud storage lakes. |
| 129 | + - Built and maintained CI/CD pipelines using Azure DevOps and Git in an Agile framework, maintaining 99.9% uptime for production data workflows. |
| 130 | + - Collaborated within a globally distributed, cross-functional team to deliver enterprise-grade performance tracking dashboards. |
| 131 | + ] |
| 132 | +) |
| 133 | + |
| 134 | +#resume_entry( |
| 135 | + "Software Engineering Virtual Experience", |
| 136 | + "Dec 2021", |
| 137 | + "JPMorgan Chase & Co.", |
| 138 | + "Remote",[ |
| 139 | + - Developed a real-time interface with stock price data feeds using Python and JPMorgan frameworks for trader visualization. |
| 140 | + - Implemented financial data visualizations and performed performance testing to ensure high-frequency trading reliability within the banking sector. |
| 141 | + ] |
| 142 | +) |
| 143 | + |
| 144 | +#resume_entry( |
| 145 | + "Java & Python Coding Intern", |
| 146 | + "Jan 2022 – Feb 2022", |
| 147 | + "Suven Consultants & Technology", |
| 148 | + "India",[ |
| 149 | + - Engineered software for a "Consumer Loan Assistance Program," focusing on backend logic, database connectivity, and financial service delivery. |
| 150 | + ] |
| 151 | +) |
| 152 | + |
| 153 | +// --- PROJECTS --- |
| 154 | +// Wrapped in a block to ensure the heading is never orphaned on the previous page |
| 155 | +#block(breakable: false)[ |
| 156 | += Projects |
| 157 | + |
| 158 | +#project_entry( |
| 159 | + "CorpRisk-AI: Due Diligence Assessor", |
| 160 | + "Python, LangGraph, RAG, FastAPI, Docker, Azure",[ |
| 161 | + - Engineered a scalable, multi-agent AI workflow (Python, LangChain, LangGraph) with a RAG architecture to automate corporate due diligence and AML risk assessment. |
| 162 | + - Implemented comprehensive LLM observability via LangSmith to track prompt metrics, evaluate AI safety guardrails, and monitor token usage. |
| 163 | + - Architected a cloud-native FastAPI backend containerized with Docker, optimized for scalable deployment on Azure Kubernetes Service (AKS) using Azure OpenAI. |
| 164 | + ] |
| 165 | +) |
| 166 | +] // End of unbreakable block |
| 167 | + |
| 168 | +#project_entry( |
| 169 | + "Full-Stack AI Agentic RAG Application", |
| 170 | + "Portfolio",[ |
| 171 | + - Architected a containerized (Docker) cloud-native RAG application using Python, Django, Neo4j, and Gemini APIs for verifiable document retrieval. |
| 172 | + - Built reasoning-capable AI agents with LangChain and LangGraph, utilizing hybrid vector-graph embeddings and custom re-ranking. |
| 173 | + - Applied AI safety guardrails, prompt evaluation, and responsible AI principles to ensure strict factual consistency. |
| 174 | + ] |
| 175 | +) |
| 176 | + |
| 177 | +#project_entry( |
| 178 | + "Symbolic Machine Learning Prover (SMLP)", |
| 179 | + "Intel & Univ. of Manchester",[ |
| 180 | + - Developed a scalable machine learning model in collaboration with Intel, optimizing data structures and algorithms for computational efficiency. |
| 181 | + - Utilized performance instrumentation and profiling tools to evaluate model throughput, integrating ML into complex production-grade workflows. |
| 182 | + ] |
| 183 | +) |
| 184 | + |
| 185 | +// --- EDUCATION --- |
| 186 | += Education |
| 187 | + |
| 188 | +#resume_entry( |
| 189 | + "MSc. Artificial Intelligence", |
| 190 | + "Sept 2023 – Sept 2024", |
| 191 | + "University of Manchester", |
| 192 | + "Manchester, UK",[ |
| 193 | + - *Modules:* Large Language Models, Computer Vision, Cognitive Robotics, Data Science |
| 194 | + ] |
| 195 | +) |
| 196 | + |
| 197 | +#resume_entry( |
| 198 | + "B.E. Computer Engineering", |
| 199 | + "Aug 2019 – Aug 2023", |
| 200 | + "Bharati Vidyapeeth's College of Engineering", |
| 201 | + "Pune, India",[ |
| 202 | + - *Modules:* CNNs, NLP, Network Security, Operating Systems, Data Engineering |
| 203 | + ] |
| 204 | +) |
| 205 | + |
| 206 | +// --- PUBLICATIONS & CERTIFICATIONS --- |
| 207 | += Publications & Certifications |
| 208 | +#set list(marker:[‣]) |
| 209 | + |
| 210 | +- Kadam Pratima, More Neel. et al. (2023) #link("https://drive.google.com/file/d/1OkyHni_bXQofdCnm0foQC_2WpdHwaD83/view?usp=sharing")['Deep Learning and Artificial Intelligence for Games'], IOSR Journal of Computer Engineering. |
| 211 | +- LinkedIn Learning (2026) #link("https://drive.google.com/file/d/102S0bvPKSVZFsVNGHvBQrOoozqPFVSFn/view?usp=sharing")['Microsoft Azure Solutions Architect Expert (AZ-305) Cert Prep']. |
| 212 | +- Udemy (2023) #link("https://drive.google.com/file/d/15DvDwrywRJZEFmEJmugoHJoxzCBvbZJU/view?usp=sharing")['Machine Learning in Python']. |
| 213 | +- Udemy (2022) #link("https://drive.google.com/file/d/1R2yIhLdrPg296hrrtFy32ZIpE1Zak9Y1/view?usp=sharing")['Reinforcement Learning: Beginner to Master']. |
| 214 | +- GIS Science Journal (2022) #link("https://drive.google.com/file/d/1RSJ3ptlvDeh9ny643ESl7j6-75ezE5HQ/view?usp=sharing")['Nanocomposites']. |
| 215 | +- SoftTech Solutions (2023) #link("https://drive.google.com/file/d/15DvDwrywRJZEFmEJmugoHJoxzCBvbZJU/view?usp=sharing")['Internship Certificate']. |
| 216 | +- Suvidha Foundation (2023) #link("https://drive.google.com/file/d/13aPoM2o3AszkObIm9WXLaeFI8GElZWpa/view?usp=sharing")['Internship Certificate']. |
0 commit comments