Sungju Kim / Lab
Agent operations, in public
Previously on AI is the main live demo here — but the point isn't the news feed, it's the pipeline behind it: a scheduled agent collects, filters, deduplicates, summarizes, and publishes static JSON. The site reads that JSON. No LLM runs on your request. Below the app you can see how the agent works, how its token usage is shaped, and how the pipeline evolved.
// loading…
Agent Ops
What the daily agent does, in one cycle.
- 01 CollectScheduled agent pulls candidate updates from upstream sources on a daily cron.
- 02 FilterDrops low-signal items by keyword and source rules before any LLM call.
- 03 DedupRemoves near-duplicates by embedding similarity — multiple takes of the same news collapse to one.
- 04 SummarizeSelected candidates go to an LLM for summary, score, and EN/KO translation.
- 05 PublishWrites a single static items.json artifact to the site root.
- 06 ServeVisitors hit static HTML + JSON. No LLM call is on the request path.
Token Optimization sample cycle
Operational metrics for tuning the workflow — not vanity numbers. After deployment these will be replaced by live run logs.
142
Raw items collected
38
After keyword filter
21
After dedup
15
Published items
~280K
Tokens used / cycle
~19K
Tokens per published item
45%
Duplicate removal rate
opus
Model
v1
Prompt version
sample
Last run
Daily usage
Tokens spent per published cycle, one bar per day — the real cost of running the agent over time.
Accumulating — the chart fills in as the daily agent runs.