In [1]:
# Import required libraries for portfolio
from portfolio import Engineer
from skills import AI, MachineLearning, DataScience
from tools import Python, PyTorch, TensorFlow, React
import passion
In [2]:
# Initialize Sahil's Profile
Sahil = Engineer(
    name="Sahil Modi",
    role="AI/ML Engineer & Data Scientist",
    location="India",
    status="Open to opportunities"
)

# Display profile
Sahil.introduce()
Out[2]:

Hi, I'm Sahil Modi

AI/ML Engineer & Data Scientist building intelligent systems with measurable impact.
In [3]:
# Technical Skills
skills = {
    "AI/ML": [
        "TensorFlow", "PyTorch", "Scikit-Learn",
        "LangChain", "OpenCV", "Hugging Face",
        "RAG", "LLM Integration"
    ],

    "Data & Analytics": [
        "Pandas", "NumPy", "Power BI", "Tableau",
        "SQL", "PostgreSQL", "MongoDB",
        "Pinecone", "FAISS"
    ],

    "Backend Development": [
        "Python", "FastAPI", "Django", "Flask",
        "REST APIs", "JWT Authentication",
        "Microservices"
    ],

    "Frontend": [
        "React.js", "Next.js", "JavaScript",
        "TypeScript", "TailwindCSS", "Bootstrap"
    ],

    "Cloud & DevOps": [
        "Git/GitHub", "Docker", "CI/CD",
        "AWS", "Azure", "Linux",
        "Kubernetes", "GitHub Actions"
    ],

    "Tools & Concepts": [
        "Data Structures & Algorithms",
        "System Design",
        "Postman",
        "PyTest"
    ]
}

# Display skills
print("Technical Skills:")
for category, techs in skills.items():
    print(f"{category}: {', '.join(techs)}")
Out[3]:
Technical Skills:
AI/ML: TensorFlow, PyTorch, Scikit-Learn, LangChain, OpenCV, Hugging Face, RAG, LLM Integration
Data & Analytics: Pandas, NumPy, Power BI, Tableau, SQL, PostgreSQL, MongoDB, Pinecone, FAISS
Backend Development: Python, FastAPI, Django, Flask, REST APIs, JWT Authentication, Microservices
Frontend: React.js, Next.js, JavaScript, TypeScript, TailwindCSS, Bootstrap
Cloud & DevOps: Git/GitHub, Docker, CI/CD, AWS, Azure, Linux, Kubernetes, GitHub Actions
Tools & Concepts: Data Structures & Algorithms, System Design, Postman, PyTest

About Me

Passionate about transforming complex problems into intelligent solutions through AI and Machine Learning

In [4]:
# About Sahil Modi
          intro = """
          Passionate software developer with strong interests in data science, analytics, cloud technologies, and scalable full-stack applications. Experienced in building backend systems, healthcare technology platforms, and AI-assisted solutions using modern development frameworks and cloud-based architectures. Skilled in Python, React, FastAPI, SQL, and DevOps fundamentals, with a focus on solving real-world problems through data-driven and efficient software solutions.
          """

print(intro)
Out[4]:

Passionate software developer with strong interests in data science, analytics, cloud technologies, and scalable full-stack applications. Experienced in building backend systems, healthcare technology platforms, and AI-assisted solutions using modern development frameworks and cloud-based architectures. Skilled in Python, React, FastAPI, SQL, and DevOps fundamentals, with a focus on solving real-world problems through data-driven and efficient software solutions.

In [5]:
# Academic Background
          education = [
              {
                  "degree": "Bachelor of Vocation (B.Voc) in Software Development",
                  "institution": "Jai Hind College, Mumbai University",
                  "duration": "2023 – 2026",
                  "cgpa": "9.5"
              }
          ]

          print("EDUCATION")
          for edu in education:
              print(f"  {edu['degree']}")
              print(f"  {edu['institution']} ({edu['duration']})")
              print(f"  CGPA: {edu['cgpa']}")
              print()
Out[5]:
EDUCATION
Bachelor of Vocation (B.Voc) in Software Development
Jai Hind College, Mumbai University (2023 – 2026)
CGPA: 9.5
In [6]:
# Work Experience
experience = [
    {
        "role": "Web Developer Intern",
        "company": "Plasmid Technologies Pvt. Ltd.",
        "period": "Oct 2024 - Dec 2024",
        "description": "Built responsive and dynamic web applications using HTML, CSS, JavaScript, React, and Vite, while managing version control and collaborating on UI enhancements through GitHub."
    },
    {
        "role": "Full Stack Developer Intern",
        "company": "DVNJ Health Tech Pvt. Ltd.",
        "period": "Oct 2025 - Jan 2026",
        "description": "Developed high-performance cross-platform applications using React Native, Firebase, AWS Cloud, and GitHub, while ensuring application stability through GUI and functional testing."
    }
]

print("WORK EXPERIENCE")
for exp in experience:
    print(f"  {exp['role']}")
    print(f"  {exp['company']} | {exp['period']}")
    print(f"  {exp['description']}")
    print()
Out[6]:
WORK EXPERIENCE
Web Developer Intern
Plasmid Technologies Pvt. Ltd. | Oct 2024 - Dec 2024
Built responsive and dynamic web applications using HTML, CSS, JavaScript, React, and Vite, while managing version control and collaborating on UI enhancements through GitHub.
Full Stack Developer Intern
DVNJ Health Tech Pvt. Ltd. | Oct 2025 - Jan 2026
Developed high-performance cross-platform applications using React Native, Firebase, AWS Cloud, and GitHub, while ensuring application stability through GUI and functional testing.

My Projects

Real-world solutions with live deployments

In [7]:
# Load and display projects
projects = [
    {
        "name": "Maternity Care System",
        "description": "Comprehensive platform for expecting and new mothers with healthcare resources and pregnancy guidance",
        "type": "Healthcare Project",
        "tags": ["React.js", "Node.js", "Firebase", "Tailwind CSS"],
        "timeline": "2025"
    },
    
    {
        "name": "EHR 360",
        "description": "Electronic Health Record platform for secure patient data management and healthcare workflow optimization",
        "type": "Major Project",
        "tags": ["React.js", "Node.js", "Firebase", "Vercel"],
        "timeline": "2025 - Present"
    },
    {
        "name": "Medi-Reach",
        "description": "AI-powered healthcare accessibility platform for intelligent patient support and medical assistance",
        "type": "AI/Healthcare Project",
        "tags": ["Python", "FastAPI", "Machine Learning", "MongoDB"],
        "timeline": "2026"
    },
]

# Display projects
for i, proj in enumerate(projects, 1):
    print(f"{i}. {proj['name']}")
Out[7]:

1. Maternity Care System

Healthcare Project

Comprehensive maternity care platform designed for expecting and new mothers, featuring healthcare resources, pregnancy guidance, article management, and responsive patient-focused UI/UX.

React.jsNode.jsFirebaseTailwind CSS
2025
Private Project

2. EHR 360

Major Project

Full-stack Electronic Health Record platform enabling secure patient data management, appointment scheduling, medical history tracking, and streamlined healthcare workflows.

React.jsNode.jsFirebaseVercel
2025 - Present
Private Project

3. Medi-Reach

AI/Healthcare Project

AI-powered healthcare accessibility platform focused on intelligent patient support, healthcare service discovery, and optimized medical assistance through data-driven solutions.

PythonFastAPIMachine LearningMongoDB
2026
Private Project

Achievements

Recognitions, leadership, and accomplishments

In [11]:
# Achievements and recognitions
achievements = [
    {
        "title": "Built Multiple AI & Healthcare Platforms",
        "description": "Developed AI and healthcare-based platforms including EHR 360, Medi-Reach, and Maternity Care System using full stack and AI technologies.",
        "type": "Technical Achievement"
    },

    {
        "title": "Highest Scorer in First Year",
        "description": "Achieved the highest overall academic score in the class during the first year of degree.",
        "type": "Academic Achievement"
    },

    {
        "title": "Treasurer - DOT COM Club",
        "description": "Managed club responsibilities, coordination, and financial activities as Treasurer of the DOT COM Club.",
        "type": "Leadership Role"
    },

    {
        "title": "1st Prize - Global Entrepreneurship Summit",
        "description": "Won first prize at the Global Entrepreneurship Summit held at college for innovation and presentation excellence.",
        "type": "Competition Win"
    },

    {
        "title": "E-Waste Recycling Initiative",
        "description": "Contributed to an environmental initiative that successfully collected and recycled over 2+ tons of e-waste.",
        "type": "Social Impact"
    }
]

for a in achievements:
    print(f"[{a['type']}] {a['title']}")
    print(f"  {a['description']}")
Out[11]:

Built Multiple AI & Healthcare Platforms

Technical Achievement

Achievement

Developed AI and healthcare-based platforms including EHR 360, Medi-Reach, and Maternity Care System using full stack and AI technologies.

AI/MLHealthcareFull Stack

Highest Scorer in First Year

Academic Achievement

Academic

Achieved the highest overall academic score in the class during the first year of degree.

AcademicsPerformanceConsistency

Treasurer - DOT COM Club

Leadership Role

Leadership

Managed club operations, coordination, and financial activities as Treasurer of the DOT COM Club.

LeadershipManagementCoordination

1st Prize - Global Entrepreneurship Summit

Competition Win

Winner

Won first prize at the Global Entrepreneurship Summit held in college for innovation and presentation excellence.

InnovationEntrepreneurshipPresentation

E-Waste Recycling Initiative

Social Impact

Impact

Contributed to an initiative that successfully collected and recycled over 2+ tons of e-waste promoting environmental sustainability.

SustainabilityE-WasteCommunity

Resume

Download my resume or view key highlights below

In [12]:
# Resume download
import os

resume_path = "public/Sahil_modi_resume.pdf"
assert os.path.exists(resume_path), "Resume file found"

# Key highlights
highlights = {
    "education": ["B.Voc Software Development", "Data Science & AI Enthusiast"],
    "experience": ["Frontend & Full Stack Development", "AI/ML & Healthcare Projects"],
    "skills": ["Python", "TensorFlow", "PyTorch", "LangChain", "Power BI", "React.js"],
    "projects": 3,
    "publications": 0
}

print("Resume ready for download")
print(f"Projects: {highlights['projects']} | Publications: {highlights['publications']}")
Out[12]:

Sahil_Modi_Resume.pdf

AI/ML Engineer • Full Stack Developer • Data Analyst

View
3+
Projects
2
Healthcare Projects
20+
Tech Stack
AI/ML
Domains

Get in Touch

Interested in collaboration or have a question? Let's connect!

In [9]:
# Contact information
    contact = {
      "email": "sahilmodic819@gmail.com",
      "linkedin": "linkedin.com/in/sahil-modi819",
      "github": "github.com/sahil-modi",
      "location": "Mumbai, Maharashtra, India",
      "availability": "Open to opportunities"
    }

    # Display contact methods
    for platform, info in contact.items():
      print(f"{platform.title()}: {info}")
Out[9]:
Location: Mumbai, Maharashtra, India
Availability: Open to opportunities
In [10]:
# Send a message
def send_message(name, email, subject, message):
    """
    Submit a contact form message
    """
    return {
        "status": "pending",
        "name": name,
        "email": email,
        "subject": subject,
        "message": message
    }

# Example usage
# result = send_message("Your Name", "email@example.com", "Subject", "Hello!")
Out[10]: