Skip to content
View Akshar106's full-sized avatar

Block or report Akshar106

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Akshar106/README.md
Akshar Patel — building LLM systems that survive real users, and the evals that keep them honest

LinkedIn Email Open to AI/ML/DS roles, 2027

MS Data Science @ Indiana University Bloomington (4.0 GPA, May 2027). Currently: AI Engineering Intern @ Hitachi Global Air Power and ML Engineer (part-time) @ Indiana University. I build multi-agent and RAG systems for real users, then build the evaluation suites that tell me whether to trust them.

Python PyTorch Hugging Face LangChain FastAPI Flask FAISS Pinecone MongoDB Snowflake Docker GitHub Actions AWS Azure

🚀 Flagship systems

Multi-agent, source-grounded RAG for graduate coursework. 7-stage pipeline with hybrid retrieval (Pinecone + BM25, fused via Reciprocal Rank Fusion) and LLM-as-judge verification. Every answer cites the exact lecture and page.

FastAPI Pinecone BM25 + RRF Groq Llama 3.3 70B

📊 50-case, 8-metric eval suite — faithfulness, citation accuracy, adversarial hallucination tests ⚡ Finding: a 3.7x citation-accuracy gap between 70B and 8B models on identical inputs

Built with Khushi Shah

Domain-specific RAG, deployed for real. Healthcare + legal document QA with MongoDB-backed multi-session conversation memory and metadata-tagged FAISS retrieval.

Flask LangChain FAISS Gemini MongoDB

🚢 Full CI/CD: Docker → GitHub Actions → Amazon ECR → auto-deploy to EC2 (self-hosted runner) ☁️ FAISS indexes synced from S3 at container startup, served by gunicorn

How EduPilot thinks

flowchart LR
    Q([query]) --> R{router}
    R --> S[splitter]
    S --> H["hybrid retrieval<br/>Pinecone + BM25 → RRF"]
    H --> RR[reranker]
    RR --> G[domain agents]
    G --> SY[synthesizer]
    SY --> V{{"LLM-as-judge<br/>verifier"}}
    V -->|cited answer| A([answer + sources])
Loading

🔒 Shipped behind private walls

The work I can't open-source, with the receipts I can share:

System Stack Receipt
Query router for IU's One.IU portal embeddings + fuzzy + LLM tiebreaker 98.6% accuracy across a closed catalog of 33 applications
Live-data tool API for IU's ChatAIU assistant Azure App Service, REST Adopted by the ChatAIU team as an agent tool
LLM autograding platform on Canvas LMS Flask, OAuth2, schema-validated outputs Every grade passes a faculty review-and-override queue
Enterprise multi-agent assistant @ Hitachi Copilot Studio, MCP, Snowflake Cortex 60 users across 5 departments on Teams
🔬 The 3.7x finding, in 60 seconds

Same pipeline. Same prompts. Same retrieved context. The only variable: the generator model.

  • Llama 3.3 70B — citation accuracy 1.00
  • Llama 3.1 8B — citation accuracy 0.27

Measured across a shared query set inside a 50-case, 8-metric evaluation suite (faithfulness, citation accuracy, retrieval hit rate, quality, coverage, latency, intent and domain accuracy). The takeaway that changed how I build: model choice alone decided whether citations could be trusted — retrieval quality couldn't compensate. This is why every system I ship now includes an eval suite before it includes a feature roadmap.

I try to know the denominator behind every number I claim.


📫 patelakshar1104@gmail.com · 💼 LinkedIn · Open to full-time AI/ML/Data Science roles starting 2027

Pinned Loading

  1. EduPilot-A-Multi-Agent-Source-Grounded-Educational-AI-System-for-Adaptive-and-Cross-Domain-Learning EduPilot-A-Multi-Agent-Source-Grounded-Educational-AI-System-for-Adaptive-and-Cross-Domain-Learning Public

    Forked from shahkhushi28k/EduPilot-A-Multi-Agent-Source-Grounded-Educational-AI-System-for-Adaptive-and-Cross-Domain-Learning

    EduPilot is an intelligent course assistant built for Indiana University students. It answers questions across four graduate courses — AML, ADT, STAT, and LLM — using a seven-stage multi-agent RAG …

    Python 1

  2. Diabetic-Retinopathy-Blindness-Detection-and-Staging Diabetic-Retinopathy-Blindness-Detection-and-Staging Public

    An end-to-end deep learning system for automated detection and staging of diabetic retinopathy from fundus images and videos, achieving 95% accuracy using ensemble CNN architectures.

    Jupyter Notebook 1

  3. IntelliSphere-Domain-Specific-RAG-Conversational-AI- IntelliSphere-Domain-Specific-RAG-Conversational-AI- Public

    A production-grade Retrieval-Augmented Generation system delivering accurate, context-aware responses for specialized domains using FAISS vector search, Google Gemini 2.5 Flash, and persistent Mong…

    HTML