Documentation
README
LLM Log Analyzer
分析 ./data/ 下的 LLM 请求/响应日志。
日志结构
每个请求对应一个目录,命名格式 YYYY-MM-DD_HH-MM-SS-mmm_NNNN:
新格式(当前)
data/
└── 2026-05-20_03-56-28-921_0014/
├── request.json # { headers: {...}, body: {...} }
└── stream.log # SSE 流式响应原文(含 usage 数据)
旧格式(兼容)
data/
└── 2026-05-14_10-30-15-123_0003/
├── request.json # { headers?: {...}, body?: {...} } 或裸 body
├── response.json # JSON 响应(非流式)
├── stream.log # SSE 流式响应原文
└── log.txt # 终端格式的人类可读日志
This is the opening of the README. Read the full README on GitHub.