Table of Contents

Back to Portfolio ArchiveAI Applications

JBang AI Knowledge Base System

Designed the management and ingestion workflows that turned uploaded education documents into searchable, bot-ready knowledge for teachers and operations teams.

My Contribution TL;DR
03核心贡献

Built category management, document records, and bot binding modules so knowledge assets could be managed as an operational system.

Designed the asynchronous ingestion pipeline that turned uploaded files into chunked, vectorized, retrieval-ready knowledge.

Streamed task progress through SSE so non-technical operators could track long-running jobs with confidence.

Core Role

Java Back-end + AI Application Development Intern

Tech Stack
JavaSpring BootMyBatis-PlusMySQLMilvusSSE
Product Site
01

Project Overview

JBang AI serves education teams that need more than a place to upload files. Teachers and operations teams needed a system that could organize course materials, ingest them reliably, and make them available to downstream assistants for retrieval and question answering.

The key business shift was moving from passive document storage to an active knowledge workflow. A file only became valuable after it was categorized, parsed, chunked, embedded, and connected to the right bot. That meant the product had to support both day-to-day content management and the longer system path from upload to searchable knowledge.

JBang knowledge workflow overview
The core product value came from connecting document management, async ingestion, retrieval infrastructure, and bot-facing knowledge delivery into one usable workflow
02

My Responsibilities

I worked on the back-end and workflow pieces that made the knowledge base usable in daily operations instead of leaving it as a static file repository.

  • Delivered category management and document record modules so knowledge assets could be tracked in a structured way.
  • Implemented bot-to-knowledge-base binding so different assistants could target different document collections.
  • Participated in the ingestion pipeline from upload metadata to parsing, chunking, vector preparation, and downstream storage.
03

Key Challenges

The upload path could not be tied to the full ingestion workload

Parsing files, extracting text, splitting content, and preparing vectors were all long-running steps. If the product handled that work directly inside the upload request, users would face slow feedback, fragile retries, and an unclear failure surface.

Structured business data and semantic retrieval had different storage shapes

The system had to track categories, document records, tenant boundaries, and bot bindings while also supporting semantic search over processed document chunks. The access patterns were different enough that one storage model would not serve both responsibilities well.

Operators needed visible progress for background work

For non-technical users, a long-running task without status updates feels indistinguishable from a stuck task. The ingestion flow had to show whether work was queued, processing, completed, or failed so teams could trust the system while waiting.

04

Solutions

I separated upload acceptance from ingestion execution

The upload request focused on validation, metadata persistence, and task creation. The heavier document processing steps then ran asynchronously in the background. That split kept the UI responsive, reduced the pressure on the request path, and made retries and task handling easier to reason about.

Asynchronous ingestion pipeline
I treated upload and ingestion as two different responsibilities: the request path captured intent, while the background flow completed parsing, chunking, and vector preparation

I used MySQL and Milvus for clearly separated responsibilities

MySQL stored the structured business layer: document records, categories, binding relationships, and task metadata. Milvus handled the semantic retrieval layer over processed chunks. This separation matched how the product was used and helped keep management logic distinct from search infrastructure.

Structured data and retrieval split
The business layer and retrieval layer served different read patterns, so the design kept management records and vector search responsibilities clearly separated

I exposed task progress through SSE updates

Instead of forcing operators to refresh or guess what the system was doing, the front end received live task updates through SSE. That made background work more legible: the product could show whether ingestion was waiting, running, or completed, which reduced uncertainty around long jobs.

Operator progress view
Live status feedback mattered because the trust problem was not only whether ingestion worked, but whether users could tell what stage it was in
05

Impact

The project improved the path from uploaded document to retrieval-ready knowledge instead of stopping at simple file storage. It also made the ingestion chain more observable for operations teams, which turned a background process into something people could actually monitor and trust.

Case study outcome snapshot
The real result was a clearer, more operational product path from upload, to ingestion, to retrieval, to bot-facing knowledge use
  • Helped turn the knowledge base from a file upload feature into a system that supported management, ingestion, retrieval, and bot configuration together.
  • Improved operator understanding of long-running ingestion work by making task states visible in the interface.
  • Gained hands-on experience connecting business modules, async workflows, and AI retrieval infrastructure inside a production-oriented product.
06

Technical Notes

The workflow I helped implement followed this sequence:

  1. Users upload a document and assign it to a category.
  2. The system stores metadata and creates an ingestion task.
  3. Background processing extracts text, splits content into chunks, and prepares vectors.
  4. Structured business data is persisted in MySQL, while vectorized retrieval data is written to Milvus.
  5. The front end subscribes to task progress updates through SSE and reflects the current ingestion state in real time.
07

Reflection

The biggest lesson from this project was that the value of an AI feature often depends less on the model itself than on the reliability of ingestion, the clarity of system boundaries, and whether users can see the system progressing in a trustworthy way.

Next Reading
2026.03 - 2026.05

AI Resume Builder & Mock Interview Platform

A job-prep tool that combines resume editing, template switching, AI rewriting, mock interviews, and knowledge ingestion.

Open case study
Sep. 2025 - Mar. 2026

Multi-tenant Sticker Commerce & AI Ops Toolkit

Worked on a multi-tenant sticker commerce system together with AI image generation, OCR quality inspection, payments, SEO and Cloudflare deployment workflows.

Open case study