Skip to content
View pranavks343's full-sized avatar

Highlights

  • Pro

Block or report pranavks343

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.

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
pranavks343/README.md

I turn hard technical ideas into systems people can actually use.

I work where quantum computing, agentic AI, and production software collide: QUBO and Ising formulations, QAOA and hybrid solvers, LangGraph agents, RAG pipelines, FastAPI services, Next.js product surfaces, Dockerized deployments, and evaluation loops that make the system better over time.

Research depth. Clean architecture. Shipping velocity.


The Operator Card

class KondapiSriPranav:
    location = "Vijayawada, India"
    role = "Quantum Computing x Agentic AI Engineer"

    builds = [
        "hybrid quantum-classical optimizers",
        "agentic AI products with real tool use",
        "RAG systems with evaluation and citations",
        "typed APIs, dashboards, and deployment pipelines",
    ]

    stack = {
        "quantum": ["Qiskit", "QAOA", "VQE", "QUBO", "Ising"],
        "ai": ["LangGraph", "LangChain", "RAG", "PyTorch", "Hugging Face"],
        "systems": ["Python", "FastAPI", "Next.js", "PostgreSQL", "Docker"],
    }

    def north_star(self):
        return "Make advanced ideas useful, testable, and shippable."
Developer animation

Currently focused on

Hybrid solvers, agent evaluation, quantum optimization, MCP-style tool workflows, and product-grade AI infrastructure.


Signature

One pattern that holds my whole stack together — research formulation, quantum execution, classical optimization, and the eval loop that decides if any of it actually worked.

def hybrid_loop(problem, max_iter: int = 100):
    """A pattern I keep coming back to: hybrid quantum-classical optimization."""
    qubo   = formulate(problem)              # 1. research  — turn the world into a Hamiltonian
    qaoa   = QAOA(cost_hamiltonian=qubo, p=3)# 2. quantum   — variational ansatz
    metric = Evaluator(problem)              # 3. eval      — observable, not vibes

    for step in range(max_iter):
        params  = classical_optimizer(qaoa)  # 4. classical — gradient / COBYLA / SPSA
        bitstr  = qaoa.run(params)           # 5. execute   — circuit on simulator or hardware
        score   = metric(bitstr)             #    measure   — every loop must be defensible

        if metric.converged(score):
            return Result(bitstr=bitstr, score=score, history=metric.history)

    return metric.best_so_far()

Engineering Domains

Quantum Computing

Quantum Computing

  • QUBO and Ising model formulation
  • QAOA, VQE, variational workflows
  • Qiskit circuits, transpilation, runtime experiments
  • Classical baseline vs quantum-inspired benchmarking
  • Noise-aware execution and result validation
Agentic AI Systems

Agentic AI

  • LangGraph workflows with tools and memory
  • Retrieval pipelines with citations and reranking
  • Structured generation and multi-step reasoning
  • Evaluation harnesses for AI behavior
  • Backend APIs around intelligent systems
Backend and Infrastructure

Backend & Infrastructure

  • FastAPI services with typed contracts
  • PostgreSQL, Redis, vector stores, and queues
  • Dockerized local-to-prod environments
  • CI/CD with GitHub Actions
  • Observability-first service design
Full Stack Products

Full-Stack Products

  • React and Next.js interfaces
  • Dashboards for experiments and insights
  • Streamlit prototypes when speed matters
  • Clean API boundaries and frontend state
  • Data, model, and optimization visualizations

Featured Builds

Hybrid quantum-classical portfolio optimizer. Mean-variance with cardinality posed as QUBO, run via QAOA against a classical baseline for honest benchmarking.

Stars Top language Last commit

Qiskit  ·  QAOA  ·  QUBO  ·  Finance

Plans entanglement distribution across quantum networks with explicit fidelity budgeting. Research-grade tooling for repeater placement and route selection.

Stars Top language Last commit

Quantum Networks  ·  Optimization  ·  Research

Multi-channel customer-query router built around MCP-style tool specs. Routes intents across channels with structured tool calls and explicit fallback paths.

Stars Top language Last commit

MCP  ·  LangGraph  ·  Tool Use  ·  Banking

Agentic CLI with tool use, persistent memory, and shell-aware reasoning. Built for engineers who live in the terminal.

Stars Top language Last commit

Agents  ·  Tool Use  ·  CLI  ·  Memory

Document intelligence with hybrid retrieval, reranking, and citations. Source-grounded answers from your PDFs — eval-ready and audit-friendly.

Stars Top language Last commit

RAG  ·  Vector Search  ·  Reranking  ·  Citations

 

Stack Matrix

Languages

Languages: Python, Java, C, C++, JavaScript, TypeScript, SQL, Bash

AI, ML, and Data

AI and ML tools
LangGraph LangChain RAG Hugging Face ChromaDB

Quantum

Qiskit QAOA VQE QUBO and Ising OpenQASM

Product Engineering

Backend, frontend, DevOps, and cloud stack
More tools I reach for

Poetry · uv · pytest · ruff · black · mypy · Vitest · OpenTelemetry · Prometheus · Grafana · Sentry · pandas · NumPy · Polars · DuckDB · pgvector · FAISS

What I'm reading right now

Quantum

  • Variational quantum algorithms — depth, noise, expressibility
  • QAOA performance on hard combinatorial structure
  • Error mitigation that survives outside the lab

AI Systems

  • MCP, tool-spec patterns, structured generation
  • LLM evaluation methodology beyond benchmarks
  • Agent architectures with measurable tool use

Engineering

  • Distributed systems, observability, recovery
  • Optimization theory and combinatorics
  • Building products around uncertain models

How I Think

flowchart LR
    A["Research problem"] --> B["Mathematical formulation"]
    B --> C["Baseline implementation"]
    C --> D["Evaluation harness"]
    D --> E["Product API"]
    E --> F["Interface"]
    F --> G["Deployment"]
    G --> H["Measure, debug, iterate"]
    H --> D
Loading

The loop on the right is the part most projects skip. I treat it as the product.

Research Mindset

I like paper-to-product work: understand the math, extract the usable mechanism, and prove it with experiments.

Systems Taste

I care about APIs, contracts, observability, failure modes, and code that another engineer can inherit.

Shipping Bias

I build end-to-end: model, backend, frontend, deployment, docs, and the feedback loop after launch.


GitHub Signal

GitHub stats GitHub streak



Top languages GitHub trophies



Profile details



Repos per language Most commit language



Productive time Stats



Contribution graph


Current Radar

Shipping

Hybrid solver benchmarks and optimization copilots.

Studying

QAOA depth, noise behavior, and error mitigation.

Building

Agent workflows with measurable tool use.

Looking For

Quantum, AI, research engineering, and serious product work.



The most interesting work right now lives at the seam between research and production.

Quantum is hard. AI is hot. Engineering is what makes both real.


Developer quote



Build With Me

If you are working on quantum optimization, agentic AI, intelligent infrastructure, or a research idea that deserves production execution, I want to hear about it.

I usually reply within 24 hours.


Portfolio LinkedIn Email



Footer wave

Designed with intent. Built to ship. Tuned for signal.

Popular repositories Loading

  1. QuantumPortfolioOptimization QuantumPortfolioOptimization Public

    Python 1

  2. CLI-AI-ASSISTANT CLI-AI-ASSISTANT Public

    Python 1

  3. ZeroOneCodeClub_FirstWebDevProject ZeroOneCodeClub_FirstWebDevProject Public

    Forked from RuchiSetti/ZeroOneCodeClub_FirstWebDevProject

    HTML

  4. AgriFuture AgriFuture Public

    Python

  5. Y23_MSWD_DOORSTEP_30848 Y23_MSWD_DOORSTEP_30848 Public

    JavaScript

  6. Pranavks_2300030848 Pranavks_2300030848 Public

    JavaScript