Skip to content
View vandre-sales's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report vandre-sales

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

πŸ‘‹ Hi, I'm VandrΓ© Sales

AI/ML Architect specializing in Multi-Agent Systems, Generative AI, and Production ML Infrastructure.

AWS NVIDIA Python TypeScript ComfyUI Docker


🎯 What I Build

Enterprise clients like Porto Seguro (15M customers) and RD SaΓΊde/Drogasil needed to scale personalized visual asset production without 5Γ— their creative teams. I architected a platform that orchestrates the entire lifecycle β€” from brand ingestion to mass generation via API β€” with clear separation of concerns: security in data handling, efficiency in GPU processing, and governance across the pipeline.

flowchart TB
    subgraph INGEST["πŸ“₯ Brand Ingestion"]
        A1["Brandbook Upload<br/>(colors, fonts, guidelines)"] --> A2["Visual Identity Analysis<br/>(logo topology, palette extraction)"]
        A2 --> A3["Persona Definition<br/>(demographics, attributes, rules)"]
    end

    subgraph DATASET["πŸ—‚οΈ Proprietary Dataset Engine"]
        B1["Automated Image Curation<br/>(face crop, resize, quality filter)"] --> B2["AI Captioning Pipeline<br/>(Vision LLM + LOCKED/UNLOCKED protocol)"]
        B2 --> B3["Validation & Packaging<br/>(violation scan, 1024px Lanczos, ZIP)"]
    end

    subgraph TRAINING["🧬 LoRA Fine-Tuning Factory"]
        C1["Identity LoRAs<br/>(persona faces β€” Flux.1 DiT)"] --> C2["Style LoRAs<br/>(brand architecture patterns)"]
        C2 --> C3["Color Palette LoRAs<br/>(chromatic consistency)"]
        C3 --> C4["Loss Monitoring & EMA<br/>(bf16, flowmatch, adaptive rank)"]
    end

    subgraph INFERENCE["⚑ Generation Engine"]
        D1["ComfyUI Workflow DAG<br/>(Custom Nodes V3 API)"] --> D2["Multi-LoRA Orchestration<br/>(identity + style + color stacking)"]
        D2 --> D3["LLM Prompt Enhancement<br/>(scene description enrichment)"]
        D3 --> D4["GPU Rendering<br/>(H100 / A100 / Blackwell)"]
    end

    subgraph DELIVERY["πŸš€ Enterprise Delivery"]
        E1["REST API Gateway<br/>(FastAPI + BentoML containers)"] --> E2["Multi-Cloud Deploy<br/>(AWS ECS + GCP Cloud Run)"]
        E2 --> E3["SaaS Interface<br/>(React + WASP framework)"]
        E3 --> E4["Batch Generation<br/>(high-volume, brand-compliant)"]
    end

    INGEST --> DATASET --> TRAINING --> INFERENCE --> DELIVERY
Loading

πŸ—οΈ How I Think

mindmap
  root((VandrΓ© Sales<br/>AI/ML Architect))
    🧠 Generative AI
      LLM Fine-Tuning
        LoRA / QLoRA
        ai-toolkit
        kohya_ss
        Replicate API
      RAG Pipelines
        LangChain
        LlamaIndex
        Vector DBs
      Multi-Agent Systems
        Orchestration
        Tool Calling
        Memory Management
      Computer Vision
        Flux.1 / Flux.2
        SDXL
        ComfyUI V3 Nodes
    ☁️ Cloud & Infrastructure
      AWS
        SageMaker
        Bedrock
        ECS Express
        EC2 GPU
      GCP
        Vertex AI
        AI Studio
        Cloud Run
      GPU Operations
        H100 / A100
        Blackwell RTX PRO
        CUDA / cuDNN
    πŸ’» Full-Stack Development
      Backend
        Python / FastAPI
        BentoML
        Docker / K8s
      Frontend
        TypeScript / React
        Next.js / Vite
        Tailwind / Shadcn
      SaaS Platform
        WASP Framework
        Prisma ORM
        Stripe Integration
    πŸ“ Architecture & Governance
      Spec-Driven Development
        Cognitive Shell
        AI Governance Framework
        Semantic Versioning
      Design Systems
        Atomic Design
        Shadcn Variants
        Component Libraries
Loading

πŸ’» How I Engineer

When building LoRAs for enterprise persona identity at scale, I discovered the bottleneck isn't training β€” it's dataset preparation. A poorly written caption destroys LoRA consistency. I developed a proprietary end-to-end process with a conditional captioning protocol (LOCKED/UNLOCKED) that mathematically guarantees permanent attributes are absorbed by the trigger word while variable attributes remain prompt-controllable.

sequenceDiagram
    participant SRC as πŸ“Έ Source Images
    participant PREP as πŸ”§ Curation
    participant CAP as 🏷️ AI Captioning
    participant LOCK as πŸ”’ Conditional Protocol
    participant QA as βœ… Quality Gate
    participant TRAIN as 🧬 Training
    participant EVAL as πŸ“Š Evaluation
    participant PROD as ⚑ Production

    SRC->>PREP: Raw images collected
    PREP->>PREP: Crop, resize, diversity audit
    PREP->>CAP: Clean image set

    CAP->>CAP: Vision LLM auto-captioning
    CAP->>LOCK: Raw captions

    LOCK->>LOCK: Classify attributes
    Note over LOCK: LOCKED β†’ never describe<br/>β†’ learned by trigger word
    Note over LOCK: UNLOCKED β†’ always describe<br/>β†’ controllable by prompt
    LOCK->>QA: Conditioned captions

    QA->>QA: Violation scan + consistency audit
    QA->>TRAIN: Validated dataset

    TRAIN->>TRAIN: LoRA fine-tuning (Flux.1 DiT)
    TRAIN->>EVAL: Model checkpoints

    EVAL->>EVAL: Trigger activation test
    EVAL->>EVAL: Attribute controllability test
    EVAL-->>TRAIN: Feedback loop if needed
    EVAL->>PROD: Production-ready LoRA

    PROD->>PROD: Multi-LoRA deployment
    PROD->>PROD: Enterprise API serving
Loading

πŸ‘” How I Lead

Coordinating multiple AI projects simultaneously (SaaS, GPU infra, LoRA training, APIs), I realized the biggest risk wasn't technical β€” it was cognitive entropy between work sessions with AI agents. Each session started from zero: no memory, no context, no governance. I created a spec-driven agentic development framework where every action is preceded by formal specification, validated by adversarial QA, and versioned with full traceability. The AI agent operates as runtime; the framework governs.

flowchart TB
    subgraph SPEC["πŸ“‹ Specification Layer"]
        S1["πŸ” Dossier<br/>(forensic investigation)"] --> S2["πŸ’‘ Concept<br/>(architectural ideation)"]
        S2 --> S3["πŸ“ Plan<br/>(tactical strategy)"]
        S3 --> S4["πŸ“ Steps<br/>(granular execution guide)"]
    end

    subgraph QA["πŸ›‘οΈ Quality Assurance"]
        Q1["😈 Devil<br/>(adversarial stress test)"] --> Q2{Approved?}
        Q2 -->|Yes| Q3["βœ… APPROVED<br/>with restrictions"]
        Q2 -->|No| Q4["πŸ”„ Rework<br/>back to Plan"]
    end

    subgraph EXEC["⚑ Execution Layer"]
        E1["πŸ€– AI Agent Runtime<br/>(MCP-connected tools)"] --> E2["πŸ”§ Tool Orchestration<br/>(read, write, execute, search)"]
        E2 --> E3["πŸ“Š Telemetry<br/>(state tracking documents)"]
    end

    subgraph GOV["πŸ›οΈ Governance Layer"]
        G1["πŸ“œ Constitution<br/>(immutable laws)"]
        G2["πŸ“¦ Semantic CLI<br/>(cognitive command shell)"]
        G3["πŸ”„ Versioning<br/>(SemVer + Changelogs)"]
    end

    S4 --> Q1
    Q3 --> E1
    Q4 --> S3
    GOV -.->|governs| SPEC
    GOV -.->|governs| QA
    GOV -.->|governs| EXEC
Loading

πŸ—ΊοΈ My Journey

timeline
    title Technology & Innovation Journey β€” VandrΓ© Sales
    1990 : πŸ’» Programming Instructor (age 14)
         : COBOL 80, FORTRAN, Algorithms
         : Youngest CS teacher in BrasΓ­lia
    1998 : πŸ”¬ Physics & Quantum Mechanics
         : Unicamp β€” relativistic physics
         : 4000+ students across 8 institutions
    2003 : 🏫 Educational Technology Director
         : ESAMC β€” pedagogical systems
         : Robotics lab + digital infrastructure
    2010 : πŸš€ Innovation & Design Thinking
         : PontoGet β€” corporate innovation consultancy
         : UC Berkeley Design Thinking certified
    2013 : πŸ“Š Startup Founder β€” Consumer BI
         : Tippz β€” real-time analytics platform
         : Pitched to Sequoia, IBM, NASA (SF 2015)
         : Tel Aviv Stock Exchange pitch (2016)
    2016 : 🏦 Startup Exit β†’ ItaΓΊ
         : Tippz acquired by Brazil's largest bank
         : ACE Accelerator β€” Head of Hub GoiΓ’nia
    2021 : πŸ€– AI-First SaaS Platform
         : Meliva.ai β€” GenAI content orchestration
         : Multi-model, multi-cloud architecture
    2024 : ☁️ AWS CTO Fellowship + Accelerators
         : Dr. Werner Vogels' global program
         : Google for Startups + Microsoft Founders + NVIDIA Inception
    2025 : πŸ† Awards & Global Recognition
         : NVIDIA Top 12 Startups (Re:Invent Las Vegas)
         : Sebrae TOP 10 National (3167 companies)
         : Web Summit speaker (Lisbon, Rio)
    2026 : 🌍 Enterprise Scale + Global Speaker
         : Beijing HICOOL Summit speaker
         : Production GPU infra (H100, Blackwell)
         : 41 repositories β€” full E2E AI pipeline
Loading

πŸ“Œ Featured Projects

Project Description Tech
LoRA Studio β€” Architecture Case Study ⭐ AI-Powered Brand Consistency at Scale β€” 15 microservices, LOCKED/UNLOCKED protocol, Flow Matching math. AWS Case Study Partner Β· Top 12 Worldwide Startups 2025 NVIDIA / AWS Re:Invent Architecture / GenAI
Alpha-Compose Precision image orchestrator β€” compose subjects over backgrounds and batch-export up to 4K TypeScript
OKLCH-Spectrum-Audit Advanced OKLCH palette visualizer with HEX conversion, luminance audit, and CSS export TypeScript
batch-image-crop Batch image cropping tool with aspect ratio presets and ZIP export up to 4K TypeScript
41 repositories Full pipeline: Dataset→LoRA→Inference→API→Product Multi-lang

πŸ† Awards & Recognition

Sebrae

Distrito

InovAtiva

FIEG

Big Tech Partners:

AWS AWS β€” Activate for Startups | AWS CTO Fellowship | AWS Revenue Acceleration Program

Google Google β€” Cloud for Startups Gen AI | Google Cloud Program Scale AI | Google Challenge

Microsoft Microsoft β€” Founders Hub

NVIDIA NVIDIA β€” Inception Program for Startups | Top 12 Worldwide Startups 2025

Oracle Oracle β€” Startup Program

🌍 Global Presence (Speaker / Exhibitor):

US San Francisco β€” Sequoia / IBM / NASA pitch for Tippz Startup (2015)

IL Tel Aviv β€” Stock Exchange pitch for Tippz Startup (2016)

PT Lisbon β€” Web Summit (2023 & 2025, APEX Top 80 BR startups for Meliva.ai Startup)

BR SΓ£o Paulo β€” Google / AWS / Microsoft accelerated for Meliva.ai Startup

BR Rio de Janeiro β€” Web Summit (2024 & 2025) for Meliva.ai Startup

US Las Vegas β€” NVIDIA Top 12 speaker, Re:Invent (2025) for Meliva.ai Startup

CN Beijing β€” HICOOL Summit speaker (2025) for Meliva.ai Startup


πŸ“« Connect


"Credentials without visibility are like code without deploy β€” they exist, but generate no value."

Pinned Loading

  1. vandre-sales vandre-sales Public

    AI/ML Architect | Multi-Agent Systems & GenAI | AWS CTO Fellow

  2. lora-studio-showcase lora-studio-showcase Public

    Architecture Case Study β€” AI-Powered Brand Consistency at Scale. 15 microservices (DDD), LOCKED/UNLOCKED LoRA protocol with mathematical enforcement, multi-provider cloud design (AWS/GCP/Azure + NV…

  3. Alpha-Compose Alpha-Compose Public

    Professional image composition tool supporting high-resolution exports up to 4K. Upload images with transparency, set backgrounds, and position subjects with precise zoom and pan controls.

    TypeScript

  4. batch-image-crop batch-image-crop Public

    Batch image cropping tool with configurable aspect ratios, resolutions up to 4K, and ZIP export. 100% client-side.

    TypeScript

  5. OKLCH-Spectrum-Audit OKLCH-Spectrum-Audit Public

    Advanced visualizer for OKLCH color palettes with features for HEX conversion, luminance auditing, synthetic scale generation, and semantic CSS export.

    TypeScript