Phenom People AI/LLM Engineer II
I own the architecture of chatbotCXAgent and the release discipline behind it: the LangGraph orchestration, the constrained tool calling, the fine-tuned Qwen deployment on vLLM, and the evaluation framework that every prompt, retrieval, and orchestration change has to pass. Alongside that, the fraud-risk platform above and the integrations that keep the assistant reachable, including WhatsApp.
Day to day I work with MCP servers (ClickHouse, Playwright, Atlassian) through Claude Code for development, debugging, and issue tracking.
Three production bugs I am glad I found
- Parallel tool calls inside the agent loop generated spurious parameters.
Fix: an isolated invocation context per branch. - Recursive JSON Schema
$refloops crashed the pipeline on certain payloads.
Fix: schemas flattened at the boundary. - vLLM and Qwen's hybrid Mamba-attention model, undocumented at the time: CUDA graphs broke.
Fix: merged weights and--enforce-eager, then a golden baseline of 1.0 s median and 1.4 s P95 with zero failures over 5,510 requests.