fix: drop thinking deltas from background agent loops

Skip thinking-only deltas when accumulating background, scheduled-task, and teacher captured reply text.
This commit is contained in:
adabarbulescu
2026-06-15 09:03:09 +03:00
committed by GitHub
parent 71ccd59b54
commit afc81bdd7b
4 changed files with 8 additions and 2 deletions
+2 -2
View File
@@ -12,8 +12,8 @@ from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
DOC_JS = (ROOT / "static/js/document.js").read_text()
STYLE_CSS = (ROOT / "static/style.css").read_text()
DOC_JS = (ROOT / "static/js/document.js").read_text(encoding="utf-8")
STYLE_CSS = (ROOT / "static/style.css").read_text(encoding="utf-8")
def test_document_textarea_scrollbar_is_visible():