You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Resolved ARM → amd64 cross-platform build issue using Docker Buildx
234
+
> > Docker images are automatically built and pushed to Docker Hub via GitHub Actions CI/CD on every commit.
232
235
233
236
---
234
237
@@ -321,23 +324,10 @@ Designed as part of an advanced AI engineering portfolio.
321
324
322
325
## 📝 Resume Bullets
323
326
```
324
-
· Engineered ReAct-based agentic system referencing OpenManus architecture
325
-
with 4-layer inheritance (BaseAgent→ReActAgent→ToolCallAgent→LingManus);
326
-
implemented human-in-the-loop escalation, stuck-state detection, and
327
-
self-termination; integrated LangSmith tracing for step-level observability
328
-
329
-
· Designed tool orchestration framework via standalone MCP server
330
-
(Stdio + SSE transport); containerized with Docker and deployed on AWS EC2;
331
-
resolved ARM → amd64 compatibility via Docker Buildx
332
-
333
-
· Built production RAG pipeline with HNSW vector indexing (PGVector),
334
-
custom query-rewriting advisors, and cross-encoder reranking
335
-
(ms-marco-MiniLM-L-6-v2) via Python FastAPI microservice; reduced
336
-
embedding API calls from 30 to 2 per document via SHA-256 deduplication
337
-
338
-
· Sustained 41 req/min throughput with P95 latency ~6.1s and 0% error
339
-
rate under concurrent load (JMeter)
340
-
```
327
+
Architected a production-grade RAG pipeline combining PGVector (HNSW indexing) with hybrid retrieval (vector similarity + BM25 via RRF fusion), query rewriting, and cross-encoder reranking (ms-marco-MiniLM-L-6-v2) via a Python FastAPI microservice; reduced embedding API costs by 93% (30→2 calls/doc) via SHA-256 content-based deduplication and built a dynamic PDF ingestion pipeline with real-time chunking and AI keyword metadata enrichment
328
+
Engineered a ReAct-based hierarchical agent framework (BaseAgent → ReActAgent → ToolCallAgent → LingManus) with stuck-state detection, human-in-the-loop escalation, and self-termination; integrated LangSmith tracing via OpenTelemetry and delivered real-time SSE streaming with persistent multi-session memory and sliding window context management
329
+
Built tool orchestration layer with 6 MCP tools for web search, scraping, file operations, and PDF generation over Stdio/SSE transport; containerized with Docker and deployed on AWS EC2; implemented CI/CD with GitHub Actions to automatically build and push Docker images using Docker Buildx for ARM→amd64 cross-platform builds
330
+
Sustained 41 req/min throughput with P95 latency ~6.1s and 0% error under concurrent load (Apache JMeter); implemented persistent file-based sliding-window chat memory```
0 commit comments