Hero background

    Ason Gautam

    AI ENGINEER AND FULLSTACK DEVELOPER.

    # AI & Full Stack Expertise
    
    import torch
    from transformers import AutoModel, AutoTokenizer
    from langchain.vectorstores import FAISS
    from react import {useState, useEffect}
    import next.server as nextjs
    
    class Expertise:
      def __init__(self):
        self.ai_skills = ["RAG", "LLMs", "Fine-tuning", "Prompt Engineering"]
        self.dev_stack = ["React", "Next.js", "Node.js", "TypeScript", "Python"]
        self.design_tools = ["Figma", "Photoshop", "Canva"]
        self.cloud_platforms = ["AWS", "Docker", "Kubernetes"]
    
      def build_rag_system(self, model_name: str):
        try:
          tokenizer = AutoTokenizer.from_pretrained(model_name)
          model = AutoModel.from_pretrained(model_name)
          return {"status": "Production-ready AI"}
        except Exception as e:
          return {"error": str(e)}
    
      def create_fullstack_app(self, frontend: str, backend: str):
        return "Building fullstack application"
    
      def design_ui(self, tool: str):
        if tool in self.design_tools:
          return "Creating beautiful UI"
        return "Design tool not found"
    
    # Always learning, always building
    expertise = Expertise()
    rag_result = expertise.build_rag_system("llama-2-7b")
    app = expertise.create_fullstack_app("Next.js", "Node.js")
    design = expertise.design_ui("Figma")
    print("🚀 Ready to build")
    total_skills = len(expertise.ai_skills + expertise.dev_stack)
    print("Skills: " + str(total_skills) + " technologies")

    My Expertise

    AI Engineering

    LLMs & AI Systems

    Expert in building RAG systems, developing AI agents, and fine-tuning LLMs. Strong in prompt engineering, model deployment, and creating production-ready AI solutions at scale.

    Full Stack Development

    Frontend, Backend & DevOps

    Creating complete web applications from database to UI. Proficient in React, Next.js, Node.js, Laravel, Python, and modern cloud infrastructure. Experienced in CI/CD, containerization, and DevOps practices.

    Designing

    UI/UX & Graphics

    Crafting beautiful, user-centric designs with attention to detail. Proficient in Figma, Canva, and Photoshop. Leveraging AI tools to create stunning visuals and seamless user experiences.

    
    import React, {useState, useEffect, useMemo} from "react"
    import Image from "next/image"
    import Link from "next/link"
    import {ExternalLink, Github, Code} from "lucide-react"
    
    type ProjectCategory = "ai" | "web-dev" | "all"
    type ProjectStatus = "live" | "development" | "archived"
    
    interface Project {
      id: number
      title: string
      description: string
      image: string
      category: ProjectCategory
      status: ProjectStatus
      link?: string
      github?: string
      technologies: string[]
      year: number
    }
    
    const CATEGORIES: ProjectCategory[] = ["all", "ai", "web-dev"]
    
    const projects: Project[] = [
      {
        id: 1,
        title: "Paperight.ai",
        description: "AI-powered final year project analysis",
        category: "ai",
        status: "development",
        technologies: ["Next.js", "LLMs", "RAG", "TypeScript"],
        year: 2025
      },
      {
        id: 2,
        title: "Ancestral",
        description: "Digital family tree platform",
        category: "web-dev",
        status: "live",
        link: "https://familytree.aquiden.com",
        technologies: ["React", "Node.js", "PostgreSQL", "Express"],
        year: 2024
      },
      {
        id: 3,
        title: "CloudModel Nexus",
        description: "Cloud platform for LLM hosting",
        category: "ai",
        status: "live",
        technologies: ["Python", "Docker", "Kubernetes", "FastAPI"],
        year: 2024
      },
      {
        id: 4,
        title: "Sushi Buzz",
        description: "Modern restaurant website",
        category: "web-dev",
        status: "live",
        link: "https://sushibuzz.be",
        technologies: ["Next.js", "TypeScript", "Tailwind", "Framer Motion"],
        year: 2024
      },
      {
        id: 5,
        title: "PowerFlow Solutions",
        description: "Hydropower consultancy platform",
        category: "web-dev",
        status: "live",
        link: "https://powerflowsolutions.com.np",
        technologies: ["React", "Laravel", "MySQL"],
        year: 2023
      }
    ]
    
    function filterProjects(
      projects: Project[],
      category?: ProjectCategory
    ) {
      if (!category || category === "all") {
        return projects
      }
      return projects.filter(
        (project) => project.category === category
      )
    }
    
    function sortProjectsByYear(
      projects: Project[]
    ) {
      return [...projects].sort((a, b) => b.year - a.year)
    }
    
    function getProjectStats(
      projects: Project[]
    ) {
      const live = projects.filter(p => p.status === "live").length
      const inDev = projects.filter(p => p.status === "development").length
      return { live, inDev, total: projects.length }
    }
    
    export default function Work() {
      const [selectedCategory, setCategory] = useState<ProjectCategory>("all")
      const [sortBy, setSortBy] = useState<"year" | "name">("year")
    
      const filteredProjects = useMemo(
        () => {
          let result = filterProjects(projects, selectedCategory)
          if (sortBy === "year") {
            result = sortProjectsByYear(result)
          }
          return result
        },
        [selectedCategory, sortBy]
      )
    
      const stats = useMemo(
        () => getProjectStats(filteredProjects),
        [filteredProjects]
      )
    
      useEffect(() => {
        console.log("Projects loaded:", filteredProjects.length)
      }, [filteredProjects])
    
      return (
        <section className="work-section">
          <div className="header">
            <h2>My Work</h2>
            <div className="stats">
              <span>{stats.live} Live</span>
              <span>{stats.inDev} In Dev</span>
            </div>
          </div>
          <div className="filters">
            {CATEGORIES.map(cat => (
              <button
                key={cat}
                onClick={() => setCategory(cat)}
                className={selectedCategory === cat ? "active" : ""}
              >
                {cat}
              </button>
            ))
          </div>
          <div className="projects-grid">
            {filteredProjects.map((project) => (
              <ProjectCard
                key={project.id}
                title={project.title}
                description={project.description}
                status={project.status}
                technologies={project.technologies}
                link={project.link}
              />
            ))
          </div>
        </section>
      )
    }

    My
    Work

    Delivered scalable solutions for domestic and international clients, from travel platforms to telemedicine systems. Specialized in React, PWA, and modern web technologies, covering both traditional web applications and AI-powered solutions.

    IN DEVELOPMENT

    PropertyFlow

    Currently developing property management software for a client in the real estate sector. The solution will automate rent collection, tenant management, payment tracking, and financial reporting, helping landlords and commercial building owners efficiently manage multiple properties and monthly income from tenants.

    Paperight.ai

    Paperight.ai

    AI-powered final year project analysis system for BScCSIT students under Tribhuvan University guidelines. Features an intuitive drag-and-drop report upload interface, archive management system, and comprehensive AI analysis that provides detailed insights, gap analysis, and actionable suggestions. Built with custom AI agents using multiple LLMs. Currently in development — launching December 2025.

    Ancestral

    Ancestral

    Developed a comprehensive digital family tree platform for a client seeking to preserve their genealogical heritage. Delivered a complete solution featuring an intuitive interface with interactive family tree visualization, member profile management, relationship mapping, and secure cloud storage. The platform enables families to document their lineage, store historical records, photos, and personal stories, creating a comprehensive digital archive. Successfully delivered a production-ready application that combines elegant design with powerful genealogy tools, making family history accessible and everlasting for generations to come.

    PowerFlow Solutions

    PowerFlow Solutions

    Delivered a complete digital transformation for Power Flow Solutions, a leading hydropower engineering consultancy. Built a modern corporate website featuring an elegant hero section with immersive solar panel imagery, comprehensive navigation, and mission/vision showcase. Additionally developed a custom project management system enabling efficient tracking and management of hydropower projects, technical audits, and engineering services. The client now has a professional platform that showcases their expertise in sustainable energy solutions while streamlining internal operations for the energy sector.

    Portfolio-as-a-Service Platform

    Portfolio-as-a-Service Platform

    Developed a comprehensive portfolio solution for clients seeking modern, professional online presence. Delivered a platform featuring modern, clean designs with customizable navigation, hero sections, and personal branding. Successfully enabled businesses and individuals to create professional portfolios without expensive custom development. Example shown: Sujata Shrestha's portfolio with elegant UI, multi-language support, and seamless content management. The platform includes custom domain integration and fully customizable branding through an intuitive interface, providing clients with a complete portfolio management solution.

    CloudModel Nexus

    CloudModel Nexus

    Enterprise-grade cloud platform for hosting and deploying fine-tuned large language models. Successfully deployed and managed multiple state-of-the-art LLMs including DeepSeek, ChatGPT, LLaMA, and Gemini models in scalable cloud infrastructure. Built a robust orchestration system enabling seamless model deployment, versioning, and inference management. Provides high-performance API endpoints, load balancing, and monitoring capabilities for production-ready AI model hosting. Demonstrates expertise in cloud architecture, containerization, and managing complex ML workloads at scale.

    ✨ Get access to the cloud model or get an API key at cheap rate • Contact Me

    Sushi Buzz

    Sushi Buzz

    Designed and developed a modern restaurant website for Sushi Buzz, a sushi bar and Asian cuisine restaurant in Brussels. Delivered a responsive web platform featuring an elegant hero section with carousel, online menu display, click-and-collect ordering system, and seamless navigation. Created a clean, modern UI that showcases their gourmet specialties including sushi rolls, ramens, poke bowls, and donburis, while providing an intuitive ordering experience for customers. Successfully implemented smooth animations, mobile-first responsive design, and optimized performance for fast loading times. The client now has a professional platform with dynamic content management, real-time order tracking, and a user-friendly interface that reflects the restaurant's brand identity, making it easy for customers to explore the menu and place orders effortlessly.

    
    type Role = {
      position: string
      company: string
      period: string
      technologies: string[]
    }
    
    const career: Role[] = [
      {
        position: "AI Engineer",
        company: "Deerwalk Group",
        period: "2024 - Present",
        technologies: ["RAG", "LLMs", "Python"]
      },
      {
        position: "Fullstack Developer",
        company: "Freelance",
        period: "2023 - Present"
      }
    ]
    
    async function getExperience() {
      return await Promise.resolve(career)
    }
    
    

    Professional
    Experience

    Globe

    Working as a fullstack developer, delivering end-to-end solutions for dozens of clients. Integrated AI capabilities into web applications to enhance user experiences and automate processes. Created and implemented numerous custom designs, ensuring responsive and modern interfaces. Built scalable applications with focus on performance, user experience, and cutting-edge technology integration.

    ReactNext.jsNode.jsTypeScriptAI IntegrationUI/UX Design

    Available for select
    freelance opportunities

    Have an exciting project you need help with? Send me an email or contact me via instant message!

    Working with Ason has been an absolute pleasure. We at Everest Swimming Pool are truly impressed with the 50+ creative designs delivered - each one reflecting professionalism, attention to detail, and a deep understanding of our brand. Ason's ability to translate our ideas into visually appealing concepts exceeded our expectations. We highly recommend Ason for any business seeking top-notch design work and reliable collaboration.

    - Everest Swimming Pool

    Ason is AMAZING! If you’re unsure about hiring him — don’t be! He built an incredible website for PowerFlow that’s clean, fast, and exactly what we needed. We’re super impressed with his creativity, professionalism, and attention to detail!”

    - RijanPowerflow Solutions

    Ason delivered a custom ERP for our startup that transformed the way we operate. He took our scattered workflows, organized them into a single intuitive platform, and iterated quickly on feedback. The result is a reliable system our whole team depends on every day.

    - Saujanya Sharma