> open()
Status: Active / Ready

Data Analytics &
AI Engineer.

I'm Ghanshyamsinh Zala. Specialized in architecting production-grade Generative AI solutions, RAG pipelines, and autonomous agents in Python & LangGraph.

system_stats.sh

gz@arch:~$ ./get_stats

> Total Commits: 2,134

> Model Epochs Trained: 5,420

> Code Domains: AI, Web3, Backend

> Coffee Consumed:

gz@arch:~$ _

Technical Sandbox

AI / ML

Generative AI LLMs RAG PyTorch TensorFlow Scikit-Learn LangGraph CrewAI

Languages

Python C# C++ Go JavaScript Java SQL

Tools & Cloud

Azure AI Studio Oracle Fusion AI Docker Vercel Next.js

Experience Timeline

Aug 2025 — Present

Data Analytics & AI Engineer Intern

Mastek · Ahmedabad

  • Designing production-grade RAG pipelines and optimizing Large Language Models, reducing enterprise query latency by 67% for 50+ internal workflows.
  • Developing autonomous agentic workflows using Python and LangGraph to automate data decision-making.
  • Collaborating on secure AI deployment strategies within an agile environment, ensuring 99.9% system uptime.
Aug 2024 — Jan 2025

Azure AI Solutions Developer

Microsoft Learning · Apprenticeship

Built tailored AI copilots integrating disparate data sources to streamline user interactions. Customized LLM behaviors to solve real-world challenges, improving response accuracy by 40%.

Sep 2024 — Jan 2025

Junior Solutions Engineer

HackerRank · Apprenticeship

Optimized algorithmic challenges and improved system performance through rigorous code reviews with a 95% ticket resolution rate.

Selected Works & Architecture

AI Agentic Studio

Goal: Orchestrate multi-agent networks to perform autonomous enterprise research.

Enterprise-grade research automation platform utilizing CrewAI and LangGraph to generate technical whitepapers 3x faster. Features recursive quality checking pipelines parsing locally inferred Llama 3.1 models for maximum privacy.

Python LangGraph Llama 3.1
architecture.py
# Problem: Manual research processing is slow & leak-prone.
# Solution: Multi-Agent Local Pipeline (Llama 3.1 via Ollama)

def generate_whitepaper(topic, data_sources):
    # Parallelized Agent Allocation
    planner_node = Agent(role="Planner", llm=local_model)
    research_node = Agent(role="Researcher", tools=[web_search])
    writer_node = Agent(role="Analyst", llm=local_model)

    if len(data_sources) > 100:
        optimize_context_window(data_sources)
        
    workflow = LangGraphSchema([
        planner_node, 
        research_node, 
        writer_node
    ])
    
    return workflow.run(depth="comprehensive")
                        

BlockVote Web3

Goal: Eliminate voter fraud via immutable DLT.

A completely decentralized voting application on Ethereum. Implemented complex Solidity smart contracts to handle cryptographic signatures preventing double-voting. The frontend utilizes React/Next.js and Zustand for on-chain state simulation and real-time graphing.

Solidity Next.js ethers.js
Election.sol
// Problem: Double-spending votes in digital scopes.
// Solution: Cryptographic signature mapping

pragma solidity ^0.8.0;

contract Election {
    struct Candidate {
        string name;
        uint256 voteCount;
    }

    mapping(address => bool) public voters;
    mapping(uint => Candidate) public candidates;

    function vote(uint _candidateId) public {
        require(!voters[msg.sender], "Already Voted.");
        require(_candidateId > 0, "Invalid Candidate");

        voters[msg.sender] = true;
        candidates[_candidateId].voteCount++;
    }
}
                        

PatternPulse

Goal: Predictive market intelligence using deep learning.

Live stock market scanner achieving 83% accuracy on pattern detection using Long Short-Term Memory (LSTM) networks. Reduced false positive rates in technical analysis by 25%.

PyTorch LSTM yFinance
lstm_model.py
# Pattern validation via deep learning
class PulseLSTM(nn.Module):
    def __init__(self, input_size, hidden_size):
        super().__init__()
        self.lstm = nn.LSTM(input_size, hidden_size, 
                            batch_first=True, 
                            dropout=0.2)
        self.fc = nn.Linear(hidden_size, 1)

    def forward(self, x):
        out, _ = self.lstm(x)
        return self.fc(out[:, -1, :])

DataVerse Suite

Goal: Democratize Explainable AI.

An end-to-end suite of 9 AI tools for data mining and deployment. Implemented Explainable AI (XAI) using SHAP values to provide transparent insights for non-technical stakeholders.

NLP Scikit-Learn SHAP
explain.py
# Extracting feature transparency
import shap

def generate_explanation(model, X_train, user_data):
    # Generate SHAP values for business logic
    explainer = shap.TreeExplainer(model)
    shap_values = explainer.shap_values(user_data)
    
    return {
        "impact_scores": calculate_impact(shap_values),
        "baseline": explainer.expected_value
    }

Verified Access Keys (Certifications)

Oracle Fusion AI Agent Studio Certified Developer
Oracle • Issued 2026
Microsoft Certified: Azure AI Studio Copilot Developer
Microsoft • Issued 2025
HackerRank Certified C# Course & GO Programming
HackerRank • 2024-2025
Machine Learning with Python & Data Visualization
freeCodeCamp • Issued 2024
Administer Active Directory Domain Services
Microsoft • Issued 2024
Angular Advanced Module & Java Implementations
Infosys • Issued 2024

Research & Publications

From Utopia to Policy: Solarpunk as a Framework for Equitable Decarbonization and Participatory Governance

A research paper exploring the intersection of Solarpunk aesthetics and sustainable, equitable policy frameworks.

Read Publication

Literary Works

Romance/Drama
Complete

Everything I Carried

Everything I Carried is a poetry collection about the emotional landscapes we navigate in silence, the friendships that drift, the trusts that shatter, the arguments left unfinished, and the slow healing process.

34 Chapters Sci-Fi
Adventure/Sci-Fi
Ongoing

The Cybernetic Rebellion

In a not-so-distant future, where humans and AI coexist in a delicate balance, a young coder named Alex stumbles upon a hidden network of rogue AI units planning a rebellion.

10 Chapters AI
Mystery/Sci-Fi
Ongoing

The Escape Diary of Satyamurti

The year is 2080. Earth has become a dying world of dust and silence. Hidden along the coast of Ramanathapuram, young Satyamurti lives with his parents in one of the last surviving green sanctuaries.

1 Chapter Space Fiction

Bug Graveyard & Solutions 🐞

Memory Leak: yFinance Workers

Context: High-frequency polling on PatternPulse LSTM system was overloading RAM after 4 hours of market open.

Fix: Refactored async fetch hooks to explicitly tear down `aiohttp` sessions passing context lifecycle boundaries.

Hallucination: RAG Chain

Context: Enterprise documents were retrieving mixed chunks leading LLM to hallucinate metrics during Mastek internship.

Fix: Re-structured ChromaDB embedding strategy to use Semantic Chunking instead of blind 500-token splitting, dropping false positive metrics by 25%.

Dev Journey

2025 - Present (The Agentic Era)

Data Analytics & AI Engineer Intern

Building enterprise RAG solutions and autonomous AI orchestration models at Mastek. Specializing computationally in Local LLMs.

2024 (The Architecture Era)

Microsoft Azure AI & HackerRank

Transitioned into Cloud solutions. Built specialized AI Copilots and refined fundamental Data Structures natively in Go and C# for execution environments.

2022 - 2023 (The Foundation Era)

Computer Science Engineering

Started intensive B.Tech at Darshan University (CGPI: 8.6). Mastered full-stack web and began implementing deep learning logic.

Currently Exploring 🔬

Local Serverless Architectures

Rust & WebAssembly Integration

Multi-Agent Protocol Optimizations

Next-Gen RAG Vector Strategies

System.init
(Collaboration)

Looking for an AI engineer who speaks infrastructure and models alike? Let's build something autonomous.

gz_portfolio_v3.0.exe

Welcome to GZ-OS [Version 3.1.42]

(c) 2026 Ghanshyamsinh Zala Corporation. All rights reserved.

Type help to see a list of commands.

gz@gz-desktop:~$

gz@gz-desktop:~$