Work & Research

01

Professional Experience

Technical Intern

Nigh, Inc.Summer 2025

PythonSQLDevelopment

Assisted with data aggregation and app testing.

  • Wrote Python and SQL scripts to qualify and analyze data for app development.
  • Supported feature testing and product validation in a fast-paced startup environment.
  • Applied full-stack fundamentals in a collaborative, agile environment.

Development Intern

Bolder InteractiveSummer 2024

C#C++Design

Supported QA testing and development of entertainment products.

  • Developed and implemented gameplay features in C# using Unity; gained exposure to game engine architecture and asset integration pipelines.
  • Integrated 3D assets and animations into builds and assisted with QA testing and iteration to improve runtime stability.
  • ollaborated with developers to refine project goals and deliver functional prototypes.
02

Technical Projects

BasecampAgent V1

A local-first agentic system optimized for AMD hardware, bypassing heavy frameworks to achieve minimal TTFT latency.

Pythonllama.cppROCmStrix Halo
TECHNICAL OVERVIEW ------------------ BasecampAgent V1 was developed to solve the latency overhead found in modern AI frameworks. By utilizing direct LLAMA.CPP calls and raw Python, the system achieves direct communication with the hardware, specifically optimized for the STRIX HALO architecture. MULTI-TIER HARDWARE ORCHESTRATION --------------------------------- The architecture dynamically offloads tasks between disparate hardware units to balance speed and reasoning depth: // ORCHESTRATOR (AMD RX 9070) Handles fast-logic routing, the primary chat interface, and immediate tool execution. // HEAVY AGENT (STRIX HALO) Utilizes 128GB Unified Memory for deep-research tasks and long-form reasoning chains that would overflow standard VRAM buffers. HARDWARE-LOCKED TOOLING ----------------------- To maintain system stability on shared memory architectures, a MUTEX-BASED LOCKING SYSTEM was implemented. This ensures that the iGPU is not overloaded by simultaneous requests from different sub-agents. KEY FEATURES ------------ - SMART_SEARCH: Parallelized web scraping and synthesis. - DEEP_THINK: Delegated long-form reasoning. - EXECUTE_COMMAND: Direct Ubuntu bash integration. - STATE-AWARE INJECTION: Hardware status (Busy/Available) is fed into every prompt. PERFORMANCE DATA ---------------- RESULT: 35% REDUCTION IN TTFT Measured against standard LangChain-based local implementations. NOTES ----- While V1 proved the efficacy of "No-Framework" agency, the roadmap for V2 involves moving toward a more modular system to balance performance with ease-of-use.