From 0c601a9cc8d4f8cf5dc8a944e15bd620864fd67e Mon Sep 17 00:00:00 2001 From: Nathan Esquenazi Date: Thu, 2 Apr 2026 15:14:42 -0700 Subject: [PATCH] docs: fix models.py line count (114 -> 132) Co-Authored-By: Claude Opus 4.6 (1M context) --- ARCHITECTURE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md index 8dabfd0..7f98519 100644 --- a/ARCHITECTURE.md +++ b/ARCHITECTURE.md @@ -34,7 +34,7 @@ This makes the code easy to modify from a terminal or by an agent. routes.py All GET + POST route handlers (~1016 lines) config.py Shared configuration, constants, global state, model discovery (~640 lines) helpers.py HTTP helpers: j(), bad(), require(), safe_resolve() (~57 lines) - models.py Session model + CRUD (~114 lines) + models.py Session model + CRUD (~132 lines) workspace.py File ops: list_dir, read_file_content, workspace helpers (~77 lines) upload.py Multipart parser, file upload handler (~77 lines) streaming.py SSE engine, run_agent integration, cancel support (~222 lines)