* Studio: stream live tool output with SSE heartbeats and fix web page extraction Server-side python/terminal tools now stream incremental stdout to the chat UI while running (new tool_output SSE event), and every blocking tool execution emits heartbeat keepalives so reverse proxies (Cloudflare tunnels cap idle streams at ~100s) cannot drop the connection mid-turn. The tool loop routes also emit a stall keepalive during silent prompt prefill between tool iterations. The final role=tool message the model sees is byte-identical to before, so tool-call parsing, nudging, and healing are untouched. web_search page fetches now extract main content: GitHub repo root pages are rewritten to the README API (with HTML fallback), hidden/aria-hidden client error placeholders are dropped, conversion scopes to article/main, and known boilerplate fragments are stripped. Non-HTML responses are returned raw instead of being run through the HTML converter. The frontend renders live-scrolling tool output inside running python and terminal cards, and a chat stream that ends without a terminal signal now surfaces an explicit interrupted state with a Retry action instead of silently ending the turn. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: fix content-type sniffing, unlimited-timeout drain, and env parity in tool streaming Content-Type sniffing: get_content_type() defaults to text/plain when the header is absent, so the sniffing fallback never fired and header-less HTML came back as raw markup. Report an empty type for a missing header and sniff the body whenever the declared type is not HTML, so mislabeled text/plain HTML pages are converted like before the extraction change. Unlimited timeout drain: with tool_call_timeout disabled the old path used communicate(timeout=None) and waited for EOF, but the streaming drain capped the post-exit drain at a 5 second join, truncating output from a grandchild that holds stdout open. When timeout is None, drain until EOF or the cancel event fires; finite timeouts keep the bounded remaining-budget join. Env parity: drop the PYTHONUNBUFFERED=1 injection on the streaming path so the child invocation is byte-identical with and without streaming (the env var was model-visible via os.getenv). Live streaming granularity now depends on the child flushing; unflushed output arrives in ~8 KB chunks or at exit and the final result is unchanged, with SSE heartbeats covering the gaps. * Studio: stream tool-call arguments while the model writes them A model writing a large tool call (a full python game is minutes of generation) produced nothing on the stream: the structured path accumulated delta.tool_calls fragments silently after the provisional card, and the text path's DRAINING state consumed everything until stream end. The user saw a dead Running spinner while the model was in fact writing code, and the byte-silent SSE segment was also the window where proxies drop the connection. New tool_args SSE events stream the arguments as they generate. The structured path forwards each fragment once a provisional card exists (backlog first, so the card starts from the top of the call). The text path sniffs the drained call for an enabled tool name and streams the raw call text under the id the stream-end parser assigns its first call (call_0), so the final tool_start reconciles the same card; the sniff is gated on enabled names plus the provisional size floor, and prose or ordinary JSON answers never spawn a card. The safetensors loop streams the drained render_html call to its existing provisional card the same way. The chat adapter accumulates the raw stream per card and feeds a partial JSON parse (call envelopes and stringified arguments unwrapped) into the part's args, so the python and terminal cards render the code live and the render_html canvas builds while streaming; both cards now say Writing code / Writing command during this phase via useToolArgsStatus. Display only: the parser input, the executed call, and the conversation the model sees are byte-identical, covered by new loop-level tests for the structured path, the text path, and the no-tool JSON answer. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: keep full tool output visible past the model cap; heal /mnt/data habits Live testing surfaced two issues in the tool streaming UX. First, a long python stdout ended in '... (truncated' in the finished card: the model-visible result is capped by tools._truncate (_MAX_OUTPUT_CHARS, previously 8000 chars) to protect the context window, and the card rendered that capped text even though the live stream had already shown everything. The cap stays (raised to 16000, overridable via UNSLOTH_TOOL_RESULT_MAX_CHARS) but display and model concerns are now split: the adapter preserves the accumulated live stream on tool_end whenever it captured more than the final result, and the finished python/terminal cards prefer it. The live-stream ceiling rises from 16 KB to 400 KB (chunks batch per poll, so SSE stays cheap), and both the live pane and the finished card render only the last 2000 lines with a Show all control so a huge output cannot jank the DOM. The truncation notice now tells the model the user saw the full output and that written files persist in the working directory. The final result string remains byte-identical with and without streaming. Second, models trained on ChatGPT code-interpreter transcripts write to /mnt/data, which does not exist here (the sandbox CWD is a per-thread persistent dir). Three layers, all identical across streaming and non-streaming paths: the python/terminal tool descriptions gain one sentence saying to use relative paths in the persistent CWD; a failed execution whose output shows a missing-file error on a known code-interpreter prefix (/mnt/data, /mnt/outputs, /home/sandbox, /workspace) gets a model-visible retry hint appended after truncation so it always survives; and a sitecustomize shim on the sandbox PYTHONPATH remaps those prefixes onto the CWD in open()/os.makedirs() with a one-line stderr notice, covering the python tool and any Python launched from the terminal tool without touching the exec wrapper (so tracebacks keep their line numbers). Bash-level file operations cannot be redirected without root or mount namespaces, so they rely on the description and the hint. * Studio: fix hidden-element parsing, heartbeat gaps, and tool output id collisions Review follow-ups on the tool streaming work: - _html_to_md: treat any present hidden attribute value as hidden (it is an enumerated attribute whose invalid value default is the Hidden state, so hidden="false" is still hidden), and implement HTML5 optional end tags so an unclosed <p hidden> or <li hidden> ends at the next sibling start tag instead of swallowing every following sibling until the parent closes - tool_stream_exec: keep heartbeats flowing after the live-output cap; a tool that keeps printing past the cap kept the queue non-empty, so neither tool_output nor heartbeat events were emitted and the SSE stream went silent past proxy idle timeouts - routes/inference: forward tool heartbeats before the disable_parallel_tool_use drop window swallows events, so a dropped call that executes server-side cannot leave the Anthropic stream silent - llama_cpp: close the provisional text tool card with a tool_end when the drained call fails to parse (DRAINING false-positive path), so the card cannot spin forever while the text is delivered as content - tools: decode terminal output as utf-8 with errors=replace like the python tool; invalid bytes used to raise UnicodeDecodeError from communicate() on the non-streaming path and silently truncate the streaming reader, so the two paths diverged - sitecustomize: patch io.open alongside builtins.open; pathlib Path.open, read_text and write_text call io.open directly and bypassed the remap - frontend: scope the toolLiveOutput/toolFullOutput store keys by pane (modelType and pairId) and clear stale entries on tool_start; backend ids like call_0 repeat across turns and across concurrently streaming panes (compare mode), so a later turn or another pane could display the wrong preserved output, and run-end cleanup now clears only its own keys Each backend fix carries a regression test that fails on the previous code; the byte-identity tests between streaming and non-streaming stay green. * Studio: keep tool failure status visible and truncation/remap notices truthful Finished python/terminal cards preferred the fuller live stream by length alone, so a tool that printed a lot then timed out or exited non-zero showed the captured stdout but dropped the final result's status (timeout notice, Exit code N). preferFullToolOutput now shows the stream when the result is just its truncated prefix, and appends the result otherwise so the failure tail always survives and the copy button copies both. The result truncation notice claimed the user was shown the full output, but the same wrapper serves non-streaming chat/API and direct execute_tool() callers where nothing is streamed to anyone. The notice is now mode-neutral and stays byte-identical with and without an output_callback, keeping the streaming vs non-streaming invariant intact. The sandbox sitecustomize shim now remaps /tmp/outputs into the working directory only while it does not already exist, so a real /tmp/outputs the user's own code created is never shadowed; /tmp/outputs also joins the missing-path retry-hint list. * Studio: suppress hidden void elements and keep live output scroll pinned only when at bottom * Studio: drop capped tool output without concatenating; remap pathlib mkdir Past the live-output cap stream_tool_execution built item + _drain_pending() (the current chunk joined with every queued sibling) only to discard it in the capped branch, so a chatty tool (yes, a tight print loop) could enqueue far more than one poll interval of text and blow past the memory/CPU ceiling the cap exists to enforce. Drain and drop queued items without building a combined string, still counting each drain toward the heartbeat cadence so the SSE keepalive survives. Generated code often prepares code-interpreter paths with Path('/mnt/data').mkdir(parents=True, exist_ok=True); pathlib drives that through os.mkdir (not the patched os.makedirs) per component and, on FileExistsError, probes the unpatched os.stat via Path.is_dir(), so the setup raised before open() ever ran. Patch os.mkdir with the same remap and patch Path.mkdir so the whole parents/exist_ok dance lands on the mapped working directory and stays idempotent; real paths still pass through. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: generalize sandbox write remap and hint to any hallucinated absolute path Models invent absolute paths from seeing their CWD (a DeepSeek run did open('/home/ubuntu/Sandbox/flappy_bird.html', 'w') and died with FileNotFoundError). A prefix list cannot enumerate these, so the sitecustomize shim gains a write-mode fallback in open()/io.open(): when a write/create-mode open targets an absolute path outside the CWD whose parent directory does not exist, redirect it to the basename in the CWD and emit the same one-line stderr notice, echoing the original path. The prefix remaps still run first (they cover reads and preserve subpaths); read modes never hit the fallback so real system files fail or succeed truthfully; bytes paths pass through. The fallback is not applied to mkdir/makedirs/Path.mkdir, since creating an arbitrary absolute directory can legitimately succeed on the host, and that decision is documented in a comment. The model-visible retry hint now echoes the real failing path (parsed from the traceback tail) instead of the canned /mnt/data example, and fires for any absolute path outside the working directory, not just the enumerated prefixes, while a relative miss still gets no hint. The shim wrapper still adds one frame to tracebacks that surface open() errors; suppressing only our frame has no clean standard mechanism (a wrapper always adds a frame), so the frame is left as an accepted compromise. Tests: hallucinated absolute write remaps to the CWD basename across w/a/x/w+; reads of a missing absolute path pass through untouched; writes to an existing external dir pass through; prefix subpaths still preserved; end-to-end write fallback lands the file in the sandbox workdir identically with and without streaming; the hint echoes the actual path for convention and non-convention absolute paths alike. * Studio: kill exited process groups on drain; bound the over-cap output batch _drain_process_output killed the process only via _kill_process_tree, which short-circuits once the parent has exited, so a grandchild that inherited stdout and outlived the parent was never signaled: a finite-timeout run could return while it kept holding the pipe, and a timeout=None cancel left it behind. Capture the setsid process group before waiting and SIGKILL that group at both give-up points so the whole tree is torn down. The streaming wrapper's first over-cap batch joined the current chunk with the entire pending backlog before enforcing the live-output cap, so a chatty tool could allocate far past the cap on the crossing batch. Bound the drain to the remaining budget and drop the surplus in place, keeping the truncated output byte-identical to joining everything. * Studio: harden sandbox path healing and process/generator cleanup Sandbox sitecustomize shim: - Make the generalized write fallback collision-safe: never redirect an invented absolute path onto an already-present CWD file (refuse and let the original open raise FileNotFoundError, preserving the workspace file). - Only w/a/x create a file; r+/rb+ are read-update modes that require the target to exist, so a bare + no longer trips the write fallback. - Gate every convention-prefix remap (/mnt/data, /mnt/outputs, /home/sandbox, /workspace) on the prefix root being absent, so a real host mount is never shadowed; a miss under an existing real prefix passes through. - Patch os.open so Path.touch and other low-level creators heal convention paths too, matching the Path.mkdir patch. Local code execution (tools.py): - Capture the setsid process group right after Popen (before any watcher can poll/reap the leader) and thread it through the cancel watcher and drain. - Kill the captured group in the non-streaming python/terminal timeout branch so an exited leader no longer leaks a stdout-holding grandchild (matches the streaming drain path). - Guard os.getpgid/os.killpg by platform so streamed execution no longer raises on Windows; fall back to single-pid kill. - Judge missing-path hints against the executor's real workdir so a legitimate miss inside a project workspace outside the sandbox root is not mislabeled. Tool streaming routes (routes/inference.py): - Drain a pending next(gen) worker before closing the generator in the safetensors and Anthropic tool streams, so a disconnect no longer races gen.close() (generator already executing) or leaks the thread/generator. HTML to markdown: - Only drop boilerplate lines composed entirely of known furniture phrases so real prose that merely quotes one (for example "we use cookies to authenticate requests") is preserved. Adds hermetic tests for each change. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: keep aside callouts, contain sandbox path remaps, and keepalive dropped Anthropic tool events _html_to_md: stop dropping <aside> unconditionally. Documentation pages render notes/warnings/examples as aside admonition callouts; those inside the selected article/main scope are real content. A furniture aside outside the scope is already excluded by the main-content pass. sitecustomize: contain the code-interpreter path remap under the sandbox CWD. A hallucinated habit path such as /mnt/data/../other_session/file no longer escapes the per-conversation workdir; parent-traversal components in the suffix are dropped and a '.'/'..' write-fallback basename is refused. routes/inference: emit a rate-limited comment keepalive when the Anthropic Messages stream drops tool_output/tool_args events. A chatty tool keeps the generator busy so the stall keepalive never fires and the tool wrapper emits heartbeats only while idle, which left the SSE stream silent past proxy idle caps; the OpenAI passthrough paths forward these events, this path now keeps the connection alive. * Studio: bound the tool-output chunk that first crosses the live cap _drain_queue joined the entire chunk that first crossed the live-output cap before dropping the rest, so a single multi-megabyte line (or any chunk dequeued once the budget was already met at max_chars <= 0) was materialized in full only to be truncated away, defeating the memory ceiling the cap enforces. Slice the crossing chunk to one character past the budget: that preserves the caller's overflow signal and its byte-identical truncation while dropping the arbitrarily large remainder in place. * Studio: scope missing-path hint to the failing line, keepalive dropped-call output, and preserve truncated tool streams over byte length - tools._missing_path_hint: the code-interpreter convention-prefix trigger scanned the whole output, so a convention prefix mentioned only in a traceback frame (a /workspace project root) or printed by the user's code would add a misleading 'use a relative path' hint even when the actual FileNotFoundError was a relative or in-workdir path. Scope the convention test to the failing-path error line(s), matching _extract_missing_abs_path. - _anthropic_tool_stream: the tool_output/tool_args rate-limited keepalive sat after the drop_until_tool_end skip, so under disable_parallel_tool_use a chatty second-or-later tool call was dropped whole with no keepalive, letting an idle proxy kill the SSE stream. Check the keepalive branch before the drop skip (like the heartbeat branch) so dropped-call output keeps the stream alive. - preferFullToolOutput / chat-adapter: a truncated result can be longer than the live stream by byte count once its footer, an 'Exit code N:' notice, or an __IMAGES__ base64 tail is appended, so the length-only gate discarded the full stream and the finished card fell back to the truncated text. Add a shared truncation-aware shouldPreserveFullOutput used by both the write and read sites: preserve the stream whenever the result carries the truncation footer. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: skip the habit-path hint for real project paths under a convention prefix * Kill captured process group on streamed wait-timeout The streamed drain path's proc.wait() timeout branch only called _kill_process_tree(proc). If the leader exits in the narrow window between the wait timing out and _kill_process_tree sampling its pgid, that helper short-circuits on the reaped leader and a stdout-holding grandchild in the same group survives. Also kill the captured pgid there, matching the non-streaming communicate() timeout path. Adds a hermetic regression test that models the reaped-leader race by stubbing _kill_process_tree. * Fix 3.10 pathlib write_text remap and honor cancel in finite drain On Python < 3.11 pathlib routes Path.open / read_text / write_text through a module-level accessor singleton whose open attribute captured the original io.open at import time (_NormalAccessor.open = io.open). Patching io.open in the sandbox shim therefore never reached that captured reference, so a Path('/mnt/data/x').write_text(...) raised FileNotFoundError on 3.10 while passing on 3.11+ (which dropped the accessor and calls io.open at call time). Repoint _NormalAccessor.open at the same io.open wrapper via a staticmethod, guarded so it is an idempotent no-op on 3.11+. Keep the test save/restore helpers symmetric so the accessor is restored too, and add a hermetic write_text/read_text remap test that covers every version. Also honor cancellation while draining inherited stdout after the leader exits. Once the leader is reaped the cancel watcher returns (its loop is while proc.poll() is None), so the finite-timeout drain did one blocking reader.join(timeout=remaining) that ignored cancel_event and kept draining a chatty grandchild for the whole budget after a disconnect/Stop. Poll cancel_event in 0.5s slices against a deadline like the timeout=None branch and kill the captured process group promptly on cancel. The normal path still reaches EOF on its own, so the streamed vs non-streamed result is unchanged. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: port no-tool stream keepalive/drain and fix subprocess/queue/extraction asymmetries Streaming no-tool paths now match their tool twins: - _anthropic_plain_stream, safetensors/MLX no-tool stream, and standard GGUF no-tool stream run next(gen) in a worker with a timed SSE keepalive loop so a long prompt prefill cannot leave the stream idle past a proxy cap. - The Anthropic plain and safetensors/MLX no-tool teardowns now drain the pending next(gen) worker and close the generator on disconnect instead of leaking the suspended generator. Other asymmetries: - Non-streaming _python_exec/_bash_exec always drain via _drain_process_output (output_callback may be None) so a cancelled run reaps a stdout-holding grandchild that outlived the leader instead of blocking in communicate(). The joined bytes are identical to communicate(), so streamed vs non-streamed results stay byte-identical. - _build_bypass_env installs the sitecustomize path shim on PYTHONPATH (prepend, keeping the operator's entries) so /mnt/data remap works in bypass mode too. - GGUF forwards output_callback to execute_tool only when the callable accepts it (shared accepts_output_callback), matching safetensors and preserving legacy monkey-patched signatures. - tool_stream_exec bounds accepted live output at the producer boundary so a chatty tool cannot grow the queue without limit under consumer backpressure and cannot keep the drain spinning and starve heartbeats. - html_to_md implicit-close now searches past unclosed inline descendants so a hidden <p>/<li> is closed by a following block; main-content scoping gates on the largest single <article>/<main> so a swarm of tiny cards cannot pass the threshold in aggregate and displace the real main. - preferFullToolOutput re-attaches the "Exit code N:" prefix to the fuller stream instead of appending the still-prefixed result, so a failed truncated tool no longer duplicates its stdout in the finished card. Adds hermetic tests for each. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Preserve short live output on timed-out tools; strip inline-CSS-hidden subtrees and score truncated main-content scopes * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Tighten chat tool streaming comments and docstrings * Keep HTML READMEs from the GitHub API and preserve interrupted tool output Convert a 200 HTML README body from the GitHub README API to Markdown instead of discarding it and falling back to the repo page chrome, and promote captured live stdout to full output when a tool never reaches tool_end (stream interrupted or cancelled) so the partial diagnostics stay on the finished card. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: anchor HTML sniff, keep repeated sandbox writes, reuse textual tool ids Anchor _looks_like_html to the leading doctype/tag so a Markdown README that opens with a fenced HTML example stays Markdown (no html_to_markdown corruption), while bare HTML fragments (<body>/<article>/<section>) are still detected and converted on a missing/wrong Content-Type. Let the sandbox write fallback re-serve a target it already healed for the same invented absolute path, so iterative overwrites of a generated artifact stop failing with FileNotFoundError while the anti-clobber guard still refuses unrelated same-basename files. Reconcile the first textual tool call carrying an explicit id onto the open provisional TEXT card instead of spawning a duplicate card under that id. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: run implicit-close before skipping tags and keep leading README tables as Markdown A skipped block (<nav>/<footer>) is an HTML5 optional-end-tag closer of an open <p>, but handle_starttag returned before the implicit-close bookkeeping, so a never-closed <p hidden> kept its hidden mark and swallowed every following sibling. Run _close_implicit before the skip decision so the hidden mark is released and trailing content renders. Drop <table> (and its <thead>/<tbody>/<tr>/<td>/<th> children) from the _looks_like_html leading set: Markdown READMEs routinely open with a raw HTML <table> badge/layout row, and sniffing that as HTML collapsed the whole Markdown body through html_to_markdown, exactly like the already-excluded <div align>/<p align> layout headers. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: make bypass-permissions Popen double faithful to the unified drain path The non-streaming _python_exec/_bash_exec now share _drain_process_output, which reads proc.stdout in a reader thread and calls proc.wait(); the test double only implemented communicate(), so bypass-mode bash returned an AttributeError instead of the faked output. Give _FakeProc a readable stdout pipe (yields the fake line then EOF), wait()/poll()/pid, so the test exercises the real drain path on both the python and bash bypass branches. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: persist sandbox path heals across runs and suppress nested hidden lists * Studio: run tool Python child unbuffered (-u) so unflushed prints stream live A long-running snippet doing bare print() without flush=True never reached the live-output pane: CPython block-buffers stdout when writing to a pipe, so _drain_process_output's readline() saw nothing until the buffer filled or the process exited. Launch the child with the interpreter -u flag so stdout is unbuffered and each print streams as it is produced. -u is applied unconditionally on both the streaming and non-streaming path, so the child invocation stays byte-identical with and without streaming and the final joined result is unchanged (buffering/timing only). Unlike the earlier PYTHONUNBUFFERED=1 env injection that was removed, -u does not pollute the child's os.environ and is not visible via os.getenv. * Render only the selected main-content subtree in html_to_markdown The main-content heuristic sized each <article>/<main> candidate individually to pick the largest subtree, but then rendered every matching tag in the document. A page with one real article plus sibling related-post cards or comment threads passed the size gate on the real article yet still emitted the unrelated siblings. Size and render the same chosen subtree so only the selected main-content subtree reaches the output. * Studio: tighten chat-tool-streaming fix comments * Studio: store tool-output-scope separators as unicode escapes The pane-scope and tool-output-key separators were literal NUL (0x00) bytes, which made git treat the file as binary and hide its diff and blame. Write them as \u0000 escapes instead; the runtime key value is unchanged. * Studio: bound tool-stream teardown when the client disconnects stream_tool_execution ran its yield loop with no try/finally, so a gen.close() on client disconnect (GeneratorExit at a yield) skipped the worker join and never signalled cancellation. A tool that does not poll cancel_event mid-flight (web_search, MCP, search_knowledge_base) then kept request teardown blocked until the tool's own timeout. Thread the request cancel_event into the wrapper, set it only on the abnormal-exit path so a clean multi-tool turn is unaffected, and bound the worker join to a few seconds; the daemon worker cannot outlive the process. * Studio: sandbox path remap no longer masks missing reads The sandbox sitecustomize shim remapped code-interpreter prefixes (/mnt/data, /workspace, ...) onto the working directory for every open mode, including reads. A read of a path that truly did not exist was silently redirected onto a same-basename workdir file instead of raising on the path the model used, hiding real missing-input errors. Remap writes and creates as before, but remap a read only when the mapped workdir target already exists (re-reading a just-written artifact); otherwise keep the original absolute path so the failure stays truthful. * Studio: bound web fetch with one overall deadline and cancellation The web fetch applied timeouts per network operation, so a GitHub README API attempt plus its HTML fallback plus up to five redirect hops could run well past the tool timeout, and nothing aborted once the client had disconnected. Add a single wall-clock deadline shared across the API attempt, the fallback, every redirect hop and the body read, cap each hop's socket timeout at the time left on the budget, and poll cancel_event. SSRF host pinning, per-hop redirect revalidation, the five-hop cap and the size cap are unchanged. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: keep tool-stream teardown off the event loop on disconnect The bounded worker join added for disconnect safety still ran on an abnormal close, so a client disconnect could wait the full join timeout; and the safetensors and Anthropic tool streams closed their generator synchronously on the event loop, unlike the GGUF path. On abnormal exit the daemon worker is abandoned, so join with a zero timeout instead of waiting; offload the safetensors and Anthropic gen.close to a thread to match GGUF; and surface a heartbeat as soon as cancel_event is set while the worker is silent so the route regains control at once instead of after a heartbeat interval. * Studio: extend the web-fetch deadline to DNS, the body read, and search The overall fetch deadline did not cover host resolution or the response body read, and query-mode web_search ignored cancellation. Resolve hosts (initial and every redirect) on a budget-polled helper so a slow or pre-cancelled getaddrinfo aborts on time; read the capped body in chunks with the budget re-checked between them so a slow-drip server cannot stretch a single read past the deadline; and gate the blocking DDGS query on cancel_event on both sides. SSRF host pinning, per-hop redirect revalidation, the five-hop cap and the size cap are unchanged. * Studio: defer the sandbox remap notice and tighten os.open create flags The one-shot remap notice fired while computing the mapping, so a read that kept its original path emitted a false notice and spent the notice a later genuine remap needed. Only emit it once _remap_open commits to the redirect. Separately, os.open classified O_TRUNC / O_APPEND without O_CREAT as creating, but those cannot create a missing file, so a missing target now stays truthful (only O_CREAT maps to the creating mode). * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: convert only genuine HTML README bodies, not Markdown with a leading block tag The GitHub README API returns the raw file, almost always Markdown. _looks_like_html classified a Markdown README opening with a block tag (<ul>, <ol>, <dl>, <pre>, <blockquote>) as HTML, so _fetch_page_text ran it through html_to_markdown and collapsed its headings, lists and fenced code into a single line. Sniff the README body with a stricter document-level check (doctype or a leading <html>/<head>/<body>) so only a real .html README is converted; the general page path is unchanged. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Surface unclassified mid-stream Anthropic errors as SSE error events The local Anthropic tool-stream and plain-stream paths called _anthropic_stream_error_event(e) with force defaulting to False, so an unclassified mid-stream failure (llama-server crash, decode OOM, a dropped upstream socket) returned no event. The except block then fell through to emitter.finish(), emitting a normal message_delta and message_stop that masked a truncated turn as a clean finish. Pass force = True at both fall-through sites so an unclassified failure emits a 500 SSE error event and returns, matching the Anthropic passthrough path that already forces it. Add regression tests covering both stream paths. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: give each tool run a unique part id so finished cards keep their own output Backend tool ids restart at call_0 every assistant response, and the transient toolLiveOutput/toolFullOutput store maps were keyed by pane scope plus that bare backend id. Two turns in the same pane therefore shared one key: the stale-clear at tool_start only guards the forward direction, so when a later call_0 finished and wrote its preserved full output, every earlier still-mounted finished card reading the same key re-rendered and displayed the newer tool's output instead of its own. Mint one per-run-unique part id per backend id (call_0:<uuid>) and route tool_start/output/args/end through a single resolver so all events for a call resolve the same id. The durable part carries the unique id, so the finished-card readers derive a collision-free key with no change, and the awaiting-confirmation path keeps its own synthesized id. Outbound replay stays paired (the assistant tool_call id and the role=tool result tool_call_id both come from the part id) and gains unique ids across turns, which strict providers require. * Studio: tighten PR comments --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: danielhanchen <michaelhan2050@gmail.com>
1234 lines
47 KiB
Python
1234 lines
47 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-only
|
||
# Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
|
||
|
||
"""Live tool-output streaming and heartbeats for server-side tool execution.
|
||
|
||
Covers three invariants:
|
||
|
||
* ``stream_tool_execution`` yields incremental ``tool_output`` events and
|
||
``heartbeat`` events while a tool blocks, and returns the tool's result
|
||
byte-identical to a direct call;
|
||
* ``_python_exec`` / ``_bash_exec`` produce the same result string with and
|
||
without an ``output_callback`` (the final tool message the model sees is
|
||
untouched by streaming);
|
||
* the GGUF agentic loop emits ``tool_output`` between ``tool_start`` and
|
||
``tool_end`` and feeds the model the same ``role=tool`` message as before.
|
||
"""
|
||
|
||
from __future__ import annotations
|
||
|
||
import json
|
||
import os
|
||
import sys
|
||
import threading
|
||
import time
|
||
from pathlib import Path
|
||
|
||
import pytest
|
||
|
||
_BACKEND_DIR = str(Path(__file__).resolve().parent.parent)
|
||
if _BACKEND_DIR not in sys.path:
|
||
sys.path.insert(0, _BACKEND_DIR)
|
||
_TESTS_DIR = str(Path(__file__).resolve().parent)
|
||
if _TESTS_DIR not in sys.path:
|
||
sys.path.insert(0, _TESTS_DIR)
|
||
|
||
from core.inference.tool_stream_exec import (
|
||
TOOL_OUTPUT_STREAM_MAX_CHARS,
|
||
stream_tool_execution,
|
||
)
|
||
from core.inference.tools import _bash_exec, _python_exec
|
||
|
||
from test_llama_cpp_tool_loop import _done, _make_backend, _sse
|
||
|
||
|
||
def _run_stream(invoke, **kwargs):
|
||
"""Drive the wrapper generator; return (events, result)."""
|
||
gen = stream_tool_execution(invoke, **kwargs)
|
||
events = []
|
||
while True:
|
||
try:
|
||
events.append(next(gen))
|
||
except StopIteration as stop:
|
||
return events, stop.value
|
||
|
||
|
||
# ── stream_tool_execution ────────────────────────────────────────
|
||
|
||
|
||
def test_result_returned_verbatim_without_output():
|
||
events, result = _run_stream(
|
||
lambda _cb: "final result",
|
||
tool_name = "web_search",
|
||
)
|
||
assert result == "final result"
|
||
assert [e for e in events if e["type"] == "tool_output"] == []
|
||
|
||
|
||
def test_incremental_output_streams_as_tool_output_events():
|
||
def tool(callback):
|
||
callback("line 1\n")
|
||
callback("line 2\n")
|
||
return "line 1\nline 2\n"
|
||
|
||
events, result = _run_stream(tool, tool_name = "python", tool_call_id = "call_1")
|
||
assert result == "line 1\nline 2\n"
|
||
outputs = [e for e in events if e["type"] == "tool_output"]
|
||
assert outputs, "expected tool_output events"
|
||
assert "".join(e["text"] for e in outputs) == "line 1\nline 2\n"
|
||
assert all(e["tool_name"] == "python" for e in outputs)
|
||
assert all(e["tool_call_id"] == "call_1" for e in outputs)
|
||
|
||
|
||
def test_heartbeats_emitted_while_tool_blocks():
|
||
release = threading.Event()
|
||
|
||
def tool(_cb):
|
||
release.wait(timeout = 5)
|
||
return "done"
|
||
|
||
gen = stream_tool_execution(
|
||
tool,
|
||
tool_name = "web_search",
|
||
heartbeat_interval_s = 0.04,
|
||
poll_interval_s = 0.02,
|
||
)
|
||
events = []
|
||
result = None
|
||
try:
|
||
while True:
|
||
event = next(gen)
|
||
events.append(event)
|
||
if len([e for e in events if e["type"] == "heartbeat"]) >= 2:
|
||
release.set()
|
||
except StopIteration as stop:
|
||
result = stop.value
|
||
assert result == "done"
|
||
assert len([e for e in events if e["type"] == "heartbeat"]) >= 2
|
||
|
||
|
||
def test_output_resets_heartbeat_pacing():
|
||
# A steady output stream means no heartbeats are needed.
|
||
def tool(callback):
|
||
for i in range(5):
|
||
callback(f"tick {i}\n")
|
||
time.sleep(0.01)
|
||
return "ok"
|
||
|
||
events, result = _run_stream(
|
||
tool,
|
||
tool_name = "python",
|
||
heartbeat_interval_s = 10.0,
|
||
poll_interval_s = 0.02,
|
||
)
|
||
assert result == "ok"
|
||
assert [e for e in events if e["type"] == "heartbeat"] == []
|
||
|
||
|
||
def test_tool_exception_propagates_after_stream():
|
||
def tool(_cb):
|
||
raise RuntimeError("boom")
|
||
|
||
gen = stream_tool_execution(tool, tool_name = "python")
|
||
try:
|
||
while True:
|
||
next(gen)
|
||
except RuntimeError as exc:
|
||
assert str(exc) == "boom"
|
||
else:
|
||
raise AssertionError("expected RuntimeError")
|
||
|
||
|
||
def test_output_before_worker_raises_is_preserved():
|
||
# Output streamed before the worker raises survives; the exception still propagates.
|
||
def tool(callback):
|
||
callback("partial before crash\n")
|
||
time.sleep(0.02)
|
||
raise RuntimeError("late boom")
|
||
|
||
gen = stream_tool_execution(tool, tool_name = "python", poll_interval_s = 0.01)
|
||
events = []
|
||
with pytest.raises(RuntimeError, match = "late boom"):
|
||
while True:
|
||
events.append(next(gen))
|
||
streamed = "".join(e["text"] for e in events if e["type"] == "tool_output")
|
||
assert "partial before crash" in streamed
|
||
|
||
|
||
def test_generator_close_cancels_observing_tool():
|
||
# gen.close() (SSE client disconnect) sets the shared cancel_event, so a
|
||
# cancel-observing tool returns at once.
|
||
cancel_event = threading.Event()
|
||
started = threading.Event()
|
||
returned = threading.Event()
|
||
|
||
def tool(_cb):
|
||
started.set()
|
||
cancel_event.wait(timeout = 5) # cancel-observing: unblocks on cancel
|
||
returned.set()
|
||
return "cancelled cleanly"
|
||
|
||
gen = stream_tool_execution(
|
||
tool,
|
||
tool_name = "web_search",
|
||
cancel_event = cancel_event,
|
||
heartbeat_interval_s = 0.02,
|
||
poll_interval_s = 0.01,
|
||
)
|
||
next(gen) # prime the worker; returns a heartbeat while the tool blocks
|
||
assert started.wait(timeout = 2)
|
||
gen.close() # GeneratorExit -> sets cancel_event, then bounded join
|
||
assert cancel_event.is_set()
|
||
assert returned.wait(timeout = 2) # the tool actually observed cancellation
|
||
|
||
|
||
def test_generator_close_is_bounded_for_cancel_ignoring_tool(monkeypatch):
|
||
# A tool that ignores cancel_event must not stall teardown: gen.close() waits
|
||
# at most the bounded join, not the tool's full runtime.
|
||
monkeypatch.setattr("core.inference.tool_stream_exec._WORKER_JOIN_TIMEOUT_S", 0.2)
|
||
release = threading.Event()
|
||
|
||
def tool(_cb):
|
||
# Ignores cancel_event; stands in for a web_search/MCP call that never polls it.
|
||
release.wait(timeout = 30)
|
||
return "slow"
|
||
|
||
gen = stream_tool_execution(
|
||
tool,
|
||
tool_name = "web_search",
|
||
cancel_event = threading.Event(),
|
||
heartbeat_interval_s = 0.02,
|
||
poll_interval_s = 0.01,
|
||
)
|
||
next(gen)
|
||
started = time.monotonic()
|
||
gen.close()
|
||
elapsed = time.monotonic() - started
|
||
release.set() # let the daemon worker finish so no sleeper lingers
|
||
assert elapsed < 2.0 # bounded by _WORKER_JOIN_TIMEOUT_S, not the 30s tool
|
||
|
||
|
||
def test_cancel_event_not_set_on_clean_finish():
|
||
# cancel_event is shared across a turn; a clean finish must leave it unset so
|
||
# the next tool in the same turn is not aborted.
|
||
cancel_event = threading.Event()
|
||
|
||
def tool(_cb):
|
||
return "ok"
|
||
|
||
events, result = _run_stream(
|
||
tool,
|
||
tool_name = "python",
|
||
cancel_event = cancel_event,
|
||
)
|
||
assert result == "ok"
|
||
assert not cancel_event.is_set()
|
||
|
||
|
||
def test_no_worker_thread_leak_under_repeated_close(monkeypatch):
|
||
# Repeated start-then-close must not leak worker threads: each cancel-observing
|
||
# worker exits once close() signals it.
|
||
monkeypatch.setattr("core.inference.tool_stream_exec._WORKER_JOIN_TIMEOUT_S", 0.2)
|
||
|
||
def _live_tool_workers():
|
||
return [t for t in threading.enumerate() if t.name.startswith("tool-exec-")]
|
||
|
||
for _ in range(50): # let workers from earlier tests drain
|
||
if not _live_tool_workers():
|
||
break
|
||
time.sleep(0.02)
|
||
baseline = len(_live_tool_workers())
|
||
|
||
for _ in range(60):
|
||
cancel_event = threading.Event()
|
||
|
||
def tool(_cb, _ev = cancel_event):
|
||
_ev.wait(timeout = 5)
|
||
return "done"
|
||
|
||
gen = stream_tool_execution(
|
||
tool,
|
||
tool_name = "soak",
|
||
cancel_event = cancel_event,
|
||
heartbeat_interval_s = 0.02,
|
||
poll_interval_s = 0.01,
|
||
)
|
||
next(gen)
|
||
gen.close() # sets cancel_event -> tool returns -> worker exits
|
||
|
||
for _ in range(100):
|
||
if len(_live_tool_workers()) <= baseline:
|
||
break
|
||
time.sleep(0.02)
|
||
assert len(_live_tool_workers()) <= baseline
|
||
|
||
|
||
def test_streamed_output_is_capped_but_result_is_not():
|
||
big = "x" * (TOOL_OUTPUT_STREAM_MAX_CHARS + 5000)
|
||
|
||
def tool(callback):
|
||
callback(big)
|
||
return big
|
||
|
||
events, result = _run_stream(tool, tool_name = "python")
|
||
assert result == big # final result untouched by the stream cap
|
||
streamed = "".join(e["text"] for e in events if e["type"] == "tool_output")
|
||
assert len(streamed) < len(big)
|
||
assert "further live output not streamed" in streamed
|
||
|
||
|
||
def test_heartbeats_continue_while_capped_output_flows():
|
||
# After the cap, discarded chunks must not starve the keepalive: a chatty tool
|
||
# keeps the queue non-empty, so without the fix no heartbeat fires and the SSE
|
||
# stream stays silent past proxy idle timeouts.
|
||
release = threading.Event()
|
||
|
||
def tool(callback):
|
||
callback("x" * (TOOL_OUTPUT_STREAM_MAX_CHARS + 10)) # trip the cap
|
||
while not release.is_set():
|
||
callback("post-cap spam")
|
||
time.sleep(0.005)
|
||
return "done"
|
||
|
||
# Watchdog: on regressed code next(gen) blocks forever while spam flows; the
|
||
# timer ends the tool, turning that hang into a clean assertion failure.
|
||
watchdog = threading.Timer(8.0, release.set)
|
||
watchdog.start()
|
||
gen = stream_tool_execution(
|
||
tool,
|
||
tool_name = "python",
|
||
heartbeat_interval_s = 0.04,
|
||
poll_interval_s = 0.02,
|
||
)
|
||
events = []
|
||
result = None
|
||
try:
|
||
while True:
|
||
event = next(gen)
|
||
events.append(event)
|
||
if len([e for e in events if e["type"] == "heartbeat"]) >= 2:
|
||
release.set()
|
||
except StopIteration as stop:
|
||
result = stop.value
|
||
finally:
|
||
release.set()
|
||
watchdog.cancel()
|
||
assert result == "done"
|
||
assert len([e for e in events if e["type"] == "heartbeat"]) >= 2
|
||
streamed = "".join(e["text"] for e in events if e["type"] == "tool_output")
|
||
assert "further live output not streamed" in streamed
|
||
assert "post-cap spam" not in streamed # cap still enforced
|
||
|
||
|
||
def test_drain_queue_bounds_the_over_cap_batch():
|
||
# _drain_queue stops concatenating once the cap is first exceeded and discards
|
||
# the rest in place, so a chatty tool's huge backlog never defeats the memory ceiling.
|
||
import queue as _queue
|
||
|
||
from core.inference.tool_stream_exec import _drain_queue
|
||
|
||
q: _queue.Queue = _queue.Queue()
|
||
sentinel = object()
|
||
chunk = "z" * 1000
|
||
for _ in range(5000): # 5 MB queued ahead of the drain
|
||
q.put(chunk)
|
||
q.put(sentinel)
|
||
text, hit_sentinel = _drain_queue(q, sentinel, max_chars = 100)
|
||
assert hit_sentinel is True
|
||
# At most cap + one chunk is joined, not the full 5 MB backlog.
|
||
assert len(text) <= 100 + len(chunk)
|
||
assert q.empty() # surplus still drained so completion is detected
|
||
|
||
|
||
def test_drain_queue_does_not_materialize_surplus_crossing_chunk():
|
||
# The single chunk that first crosses the cap must not be materialized in full
|
||
# (a tool can emit one multi-megabyte line). Keep just one char past the budget
|
||
# to preserve the overflow signal and byte-identical truncation, even when the
|
||
# budget is already met (max_chars <= 0).
|
||
import queue as _queue
|
||
|
||
from core.inference.tool_stream_exec import _drain_queue
|
||
|
||
sentinel = object()
|
||
huge = "z" * 1_000_000
|
||
|
||
# Budget already met (non-positive): keep one char, a true prefix.
|
||
for cap in (0, -500):
|
||
q: _queue.Queue = _queue.Queue()
|
||
q.put(huge)
|
||
q.put("more")
|
||
q.put(sentinel)
|
||
text, hit_sentinel = _drain_queue(q, sentinel, max_chars = cap)
|
||
assert hit_sentinel is True
|
||
assert len(text) == 1
|
||
assert huge.startswith(text)
|
||
assert q.empty()
|
||
|
||
# Positive cap crossed by one huge chunk: bounded to cap + 1, prefix kept.
|
||
q = _queue.Queue()
|
||
q.put(huge)
|
||
q.put(sentinel)
|
||
text, hit_sentinel = _drain_queue(q, sentinel, max_chars = 100)
|
||
assert len(text) == 101
|
||
assert text == huge[:101]
|
||
|
||
|
||
def test_drain_queue_unbounded_joins_everything():
|
||
# Without a cap the join is complete and ordered (the sub-cap path streams
|
||
# every chunk verbatim on this).
|
||
import queue as _queue
|
||
|
||
from core.inference.tool_stream_exec import _drain_queue
|
||
|
||
q: _queue.Queue = _queue.Queue()
|
||
sentinel = object()
|
||
for i in range(3):
|
||
q.put(f"c{i}")
|
||
q.put(sentinel)
|
||
text, hit_sentinel = _drain_queue(q, sentinel, max_chars = None)
|
||
assert hit_sentinel is True
|
||
assert text == "c0c1c2"
|
||
|
||
|
||
def test_over_cap_crossing_batch_streams_capped_output():
|
||
# End-to-end: a burst crossing the cap in one drain still yields a capped live
|
||
# stream and an untouched final result.
|
||
chunk = "z" * 1000
|
||
|
||
def tool(callback):
|
||
for _ in range(3000): # ~3 MB, well past the cap, in one burst
|
||
callback(chunk)
|
||
return "final"
|
||
|
||
events, result = _run_stream(tool, tool_name = "python")
|
||
assert result == "final"
|
||
streamed = "".join(e["text"] for e in events if e["type"] == "tool_output")
|
||
assert len(streamed) <= TOOL_OUTPUT_STREAM_MAX_CHARS + len(
|
||
"\n... (further live output not streamed)\n"
|
||
)
|
||
assert "further live output not streamed" in streamed
|
||
|
||
|
||
# ── python / terminal executors ──────────────────────────────────
|
||
|
||
_PY_CODE = "for i in range(5):\n print('row', i)\n"
|
||
|
||
|
||
def test_python_exec_result_identical_with_streaming():
|
||
baseline = _python_exec(_PY_CODE, timeout = 60)
|
||
chunks: list[str] = []
|
||
streamed = _python_exec(_PY_CODE, timeout = 60, output_callback = chunks.append)
|
||
assert streamed == baseline
|
||
assert "".join(chunks) == "".join(f"row {i}\n" for i in range(5))
|
||
|
||
|
||
def test_python_exec_streams_lines_incrementally():
|
||
# The first of two sleep-separated prints must reach the callback well before exit.
|
||
code = (
|
||
"import time\n"
|
||
"print('first', flush=True)\n"
|
||
"time.sleep(1.0)\n"
|
||
"print('second', flush=True)\n"
|
||
)
|
||
first_seen_at: list[float] = []
|
||
|
||
def on_chunk(_text: str) -> None:
|
||
if not first_seen_at:
|
||
first_seen_at.append(time.monotonic())
|
||
|
||
started = time.monotonic()
|
||
result = _python_exec(code, timeout = 60, output_callback = on_chunk)
|
||
finished = time.monotonic()
|
||
assert "first" in result and "second" in result
|
||
assert first_seen_at, "callback never invoked"
|
||
# First line arrived before the sleep completed (margin for slow interpreter start).
|
||
assert first_seen_at[0] - started < finished - started - 0.5
|
||
|
||
|
||
def test_python_exec_unflushed_print_streams_live_and_result_identical():
|
||
# A bare print() WITHOUT flush=True then a sleep. -u forces the child's stdout
|
||
# unbuffered so the line reaches the callback before exit (else CPython
|
||
# block-buffers the pipe and the live pane stays empty). -u changes timing only,
|
||
# so the joined result stays byte-identical to the non-streaming run.
|
||
code = (
|
||
"import time\n"
|
||
"print('progress')\n" # no flush=True
|
||
"time.sleep(1.0)\n"
|
||
"print('done')\n"
|
||
)
|
||
first_seen_at: list[float] = []
|
||
|
||
def on_chunk(_text: str) -> None:
|
||
if not first_seen_at:
|
||
first_seen_at.append(time.monotonic())
|
||
|
||
baseline = _python_exec(code, timeout = 60)
|
||
started = time.monotonic()
|
||
streamed = _python_exec(code, timeout = 60, output_callback = on_chunk)
|
||
finished = time.monotonic()
|
||
assert streamed == baseline
|
||
assert "progress" in streamed and "done" in streamed
|
||
assert first_seen_at, "callback never invoked for unflushed print"
|
||
# Unflushed line arrived before the sleep finished: streamed live, not at exit.
|
||
assert first_seen_at[0] - started < finished - started - 0.5
|
||
|
||
|
||
def test_python_exec_error_exit_identical_with_streaming():
|
||
code = "print('before')\nraise SystemExit(3)\n"
|
||
baseline = _python_exec(code, timeout = 60)
|
||
streamed = _python_exec(code, timeout = 60, output_callback = lambda _t: None)
|
||
assert streamed == baseline
|
||
assert streamed.startswith("Exit code 3:")
|
||
|
||
|
||
def test_python_exec_timeout_message_identical_with_streaming():
|
||
code = "import time\ntime.sleep(30)\n"
|
||
baseline = _python_exec(code, timeout = 1)
|
||
streamed = _python_exec(code, timeout = 1, output_callback = lambda _t: None)
|
||
assert streamed == baseline == "Execution timed out after 1 seconds."
|
||
|
||
|
||
def test_python_exec_callback_errors_do_not_break_execution():
|
||
def bad_callback(_text: str) -> None:
|
||
raise ValueError("observer bug")
|
||
|
||
result = _python_exec("print('ok')", timeout = 60, output_callback = bad_callback)
|
||
assert result.strip() == "ok"
|
||
|
||
|
||
def test_bash_exec_result_identical_with_streaming():
|
||
command = "echo one; echo two"
|
||
baseline = _bash_exec(command, timeout = 60)
|
||
chunks: list[str] = []
|
||
streamed = _bash_exec(command, timeout = 60, output_callback = chunks.append)
|
||
assert streamed == baseline
|
||
assert "".join(chunks) == "one\ntwo\n"
|
||
|
||
|
||
def test_bash_exec_invalid_utf8_identical_with_streaming():
|
||
# Invalid UTF-8 must not kill either path: the pipe decodes with
|
||
# errors="replace", so the streaming reader thread cannot die on the
|
||
# UnicodeDecodeError readline raises, and both paths return the same replaced text.
|
||
command = "printf 'ok\\377bad\\n'" # \377 = 0xFF, invalid UTF-8
|
||
baseline = _bash_exec(command, timeout = 60)
|
||
chunks: list[str] = []
|
||
streamed = _bash_exec(command, timeout = 60, output_callback = chunks.append)
|
||
assert streamed == baseline
|
||
assert not baseline.startswith("Execution error")
|
||
assert "ok" in baseline and "bad" in baseline
|
||
assert "<EFBFBD>" in baseline # replacement character, not a crash
|
||
assert "".join(chunks) == "ok<EFBFBD>bad\n"
|
||
|
||
|
||
def test_bash_exec_unlimited_timeout_waits_for_grandchild_output():
|
||
# A background grandchild holds the pipe open past the shell's exit and writes
|
||
# ~7s later. With timeout=None the drain must wait for EOF like
|
||
# communicate(timeout=None), so the late output is included.
|
||
command = "( sleep 7; echo late-grandchild-output ) & echo parent-done"
|
||
chunks: list[str] = []
|
||
result = _bash_exec(command, timeout = None, output_callback = chunks.append)
|
||
assert "parent-done" in result
|
||
assert "late-grandchild-output" in result
|
||
assert "late-grandchild-output" in "".join(chunks)
|
||
|
||
|
||
def test_bash_exec_finite_timeout_kills_grandchild_holding_stdout(tmp_path):
|
||
# A backgrounded grandchild holds the pipe open past the finite timeout, then
|
||
# would write a sentinel. The parent shell has already exited, so killing only
|
||
# the reaped parent leaves the grandchild running; the drain must kill the
|
||
# process group captured before the wait so the grandchild never writes.
|
||
sentinel = tmp_path / "grandchild_ran"
|
||
command = f"( sleep 3; touch '{sentinel}' ) & echo parent-done"
|
||
result = _bash_exec(command, timeout = 1, output_callback = lambda _t: None)
|
||
assert "timed out" in result
|
||
time.sleep(4.0) # past the grandchild's 3s sleep
|
||
assert not sentinel.exists(), "grandchild survived the timeout process-group kill"
|
||
|
||
|
||
@pytest.mark.skipif(sys.platform == "win32", reason = "POSIX process groups")
|
||
def test_bash_exec_nonstreaming_timeout_kills_grandchild(tmp_path):
|
||
# The NON-streaming path (communicate() + _kill_process_tree) short-circuits
|
||
# once the reaped leader has exited, so a stdout-holding grandchild survives
|
||
# unless the group captured right after spawn is killed too. Must match the
|
||
# streaming path's exited-leader handling.
|
||
sentinel = tmp_path / "grandchild_ran"
|
||
command = f"( sleep 3; touch '{sentinel}' ) & echo parent-done"
|
||
result = _bash_exec(command, timeout = 1) # no output_callback -> communicate path
|
||
assert "timed out" in result
|
||
time.sleep(4.0)
|
||
assert not sentinel.exists(), "non-streaming timeout leaked a stdout-holding grandchild"
|
||
|
||
|
||
@pytest.mark.skipif(sys.platform == "win32", reason = "POSIX process groups")
|
||
def test_python_exec_nonstreaming_timeout_kills_grandchild(tmp_path):
|
||
sentinel = tmp_path / "grandchild_ran"
|
||
code = (
|
||
"import subprocess\n"
|
||
f"subprocess.Popen(['bash', '-c', \"sleep 3; touch '{sentinel}'\"])\n"
|
||
"print('parent-done')\n"
|
||
"import time; time.sleep(30)\n"
|
||
)
|
||
result = _python_exec(code, timeout = 1) # no output_callback -> communicate path
|
||
assert "timed out" in result
|
||
time.sleep(4.0)
|
||
assert not sentinel.exists(), "non-streaming timeout leaked a stdout-holding grandchild"
|
||
|
||
|
||
def test_drain_process_output_without_posix_process_group_apis(monkeypatch):
|
||
# On Windows os.getpgid / os.killpg are absent; _drain_process_output must not
|
||
# raise AttributeError before reading the child's output. Removing the APIs and
|
||
# flipping os.name: the child still runs and is captured, only the group kill is skipped.
|
||
import subprocess as _sp
|
||
|
||
from core.inference.tools import _drain_process_output
|
||
|
||
monkeypatch.delattr(os, "getpgid", raising = False)
|
||
monkeypatch.delattr(os, "killpg", raising = False)
|
||
monkeypatch.setattr(os, "name", "nt")
|
||
|
||
proc = _sp.Popen(
|
||
[sys.executable, "-c", "print('ok-no-pgid')"],
|
||
stdout = _sp.PIPE,
|
||
stderr = _sp.STDOUT,
|
||
text = True,
|
||
)
|
||
output, timed_out = _drain_process_output(proc, 10, lambda _t: None)
|
||
assert not timed_out
|
||
assert "ok-no-pgid" in output
|
||
|
||
|
||
@pytest.mark.skipif(sys.platform == "win32", reason = "POSIX process groups")
|
||
def test_captured_group_survives_fast_leader_reap(tmp_path):
|
||
# Capture the group after spawn, reap the leader first (as a polling cancel
|
||
# watcher would), then drain: the pre-captured pgid must still reap the
|
||
# stdout-holding grandchild even though os.getpgid(pid) would now fail.
|
||
import subprocess as _sp
|
||
|
||
from core.inference.tools import _capture_process_group, _drain_process_output
|
||
|
||
sentinel = tmp_path / "grandchild_ran"
|
||
proc = _sp.Popen(
|
||
["bash", "-c", f"( sleep 3; touch '{sentinel}' ) & echo parent-done"],
|
||
stdout = _sp.PIPE,
|
||
stderr = _sp.STDOUT,
|
||
text = True,
|
||
preexec_fn = os.setsid,
|
||
)
|
||
pgid = _capture_process_group(proc)
|
||
assert pgid is not None
|
||
proc.wait() # reap the leader before draining
|
||
|
||
output, timed_out = _drain_process_output(proc, 0.5, None, pgid = pgid)
|
||
assert timed_out
|
||
assert "parent-done" in output
|
||
time.sleep(4.0)
|
||
assert not sentinel.exists(), "pre-captured group failed to reap the grandchild"
|
||
|
||
|
||
@pytest.mark.skipif(sys.platform == "win32", reason = "POSIX process groups")
|
||
def test_finite_drain_honors_cancel_after_leader_exit(tmp_path):
|
||
# Once the leader exits the cancel watcher (which loops on proc.poll()) is gone,
|
||
# so the finite-timeout drain itself must honor cancellation: a mid-drain
|
||
# cancel_event must break the drain promptly and kill the process group instead
|
||
# of draining a chatty grandchild for the whole large budget.
|
||
import subprocess as _sp
|
||
import threading as _th
|
||
|
||
from core.inference.tools import _capture_process_group, _drain_process_output
|
||
|
||
sentinel = tmp_path / "grandchild_late"
|
||
# Grandchild holds the pipe open, streams every 0.2s, and touches the sentinel
|
||
# only after 10s -- well past the cancel. The leader exits immediately, so the
|
||
# drain enters the finite branch with a live, chatty reader.
|
||
proc = _sp.Popen(
|
||
[
|
||
"bash",
|
||
"-c",
|
||
"( for i in $(seq 1 100); do echo tick-$i; sleep 0.2; done; "
|
||
f"touch '{sentinel}' ) & echo parent-done",
|
||
],
|
||
stdout = _sp.PIPE,
|
||
stderr = _sp.STDOUT,
|
||
text = True,
|
||
preexec_fn = os.setsid,
|
||
)
|
||
pgid = _capture_process_group(proc)
|
||
assert pgid is not None
|
||
proc.wait() # leader exits at once; the cancel watcher would now be gone
|
||
|
||
cancel_event = _th.Event()
|
||
_th.Timer(0.6, cancel_event.set).start() # cancel shortly into the drain
|
||
|
||
started = time.monotonic()
|
||
# Large finite timeout (30s); without the cancel poll the drain keeps reading
|
||
# the grandchild until the pipe closes ~20s later.
|
||
output, timed_out = _drain_process_output(proc, 30, lambda _t: None, cancel_event, pgid = pgid)
|
||
elapsed = time.monotonic() - started
|
||
assert elapsed < 5.0, f"finite drain ignored cancel_event (took {elapsed:.1f}s)"
|
||
# Cancellation is not a timeout: the budget never elapsed.
|
||
assert not timed_out
|
||
assert "parent-done" in output
|
||
time.sleep(11.0) # past the grandchild's 10s sentinel write
|
||
assert not sentinel.exists(), "cancel did not kill the stdout-holding grandchild group"
|
||
|
||
|
||
@pytest.mark.skipif(sys.platform == "win32", reason = "POSIX process groups")
|
||
def test_streamed_wait_timeout_kills_grandchild_when_leader_reaped(tmp_path, monkeypatch):
|
||
# The proc.wait() timeout branch normally kills the group via _kill_process_tree.
|
||
# But the leader can exit before _kill_process_tree samples its pgid, which then
|
||
# short-circuits on the reaped leader and leaves a stdout-holding grandchild.
|
||
# Model that race with _kill_process_tree as a no-op; the captured-pgid kill in
|
||
# the timeout branch must still reap the grandchild, matching non-streaming.
|
||
import subprocess as _sp
|
||
|
||
from core.inference import tools as _tools_mod
|
||
from core.inference.tools import _capture_process_group, _drain_process_output
|
||
|
||
monkeypatch.setattr(_tools_mod, "_kill_process_tree", lambda proc: None)
|
||
|
||
sentinel = tmp_path / "grandchild_ran"
|
||
# Leader sleeps past the timeout so proc.wait() genuinely times out; a same-group
|
||
# grandchild holds stdout and would touch the sentinel unless the group is killed.
|
||
proc = _sp.Popen(
|
||
["bash", "-c", f"( sleep 3; touch '{sentinel}' ) & sleep 30"],
|
||
stdout = _sp.PIPE,
|
||
stderr = _sp.STDOUT,
|
||
text = True,
|
||
preexec_fn = os.setsid,
|
||
)
|
||
pgid = _capture_process_group(proc)
|
||
assert pgid is not None
|
||
|
||
output, timed_out = _drain_process_output(proc, 0.5, None, pgid = pgid)
|
||
assert timed_out
|
||
time.sleep(4.0) # past the grandchild's 3s sleep
|
||
assert not sentinel.exists(), (
|
||
"streamed wait timeout leaked a stdout-holding grandchild when the "
|
||
"process-tree kill short-circuited on the reaped leader"
|
||
)
|
||
|
||
|
||
# ── GGUF loop regression: model-visible messages unchanged ───────
|
||
|
||
|
||
def _run_gguf_tool_turn(monkeypatch, fake_execute_tool):
|
||
tool_stream = [
|
||
_sse(
|
||
{
|
||
"tool_calls": [
|
||
{
|
||
"id": "call_1",
|
||
"index": 0,
|
||
"function": {
|
||
"name": "python",
|
||
"arguments": json.dumps({"code": "print('hi')"}),
|
||
},
|
||
}
|
||
]
|
||
}
|
||
),
|
||
_done(),
|
||
]
|
||
final_stream = [_sse({"content": "All done."}), _done()]
|
||
payloads: list[dict] = []
|
||
backend = _make_backend(monkeypatch, [tool_stream, final_stream], payloads)
|
||
monkeypatch.setattr("core.inference.tools.execute_tool", fake_execute_tool)
|
||
events = list(
|
||
backend.generate_chat_completion_with_tools(
|
||
messages = [{"role": "user", "content": "run it"}],
|
||
tools = [{"type": "function", "function": {"name": "python"}}],
|
||
max_tool_iterations = 1,
|
||
)
|
||
)
|
||
return events, payloads
|
||
|
||
|
||
def test_gguf_loop_final_tool_message_unchanged_by_streaming(monkeypatch):
|
||
result_text = "hi\nline 2\n"
|
||
|
||
def plain_tool(name, arguments, **_kwargs):
|
||
return result_text
|
||
|
||
def streaming_tool(
|
||
name,
|
||
arguments,
|
||
output_callback = None,
|
||
**_kwargs,
|
||
):
|
||
if output_callback is not None:
|
||
output_callback("hi\n")
|
||
output_callback("line 2\n")
|
||
return result_text
|
||
|
||
events_plain, payloads_plain = _run_gguf_tool_turn(monkeypatch, plain_tool)
|
||
events_streaming, payloads_streaming = _run_gguf_tool_turn(monkeypatch, streaming_tool)
|
||
|
||
def _tool_messages(payloads):
|
||
return [
|
||
msg for payload in payloads for msg in payload["messages"] if msg.get("role") == "tool"
|
||
]
|
||
|
||
# The role=tool message fed to the model is byte-identical: streaming is purely
|
||
# observational and must not perturb parsing/nudging/healing.
|
||
assert _tool_messages(payloads_streaming) == _tool_messages(payloads_plain)
|
||
assert _tool_messages(payloads_streaming) == [
|
||
{
|
||
"role": "tool",
|
||
"name": "python",
|
||
"content": result_text,
|
||
"tool_call_id": "call_1",
|
||
}
|
||
]
|
||
|
||
# tool_end results match too.
|
||
ends_plain = [e for e in events_plain if e["type"] == "tool_end"]
|
||
ends_streaming = [e for e in events_streaming if e["type"] == "tool_end"]
|
||
assert [e["result"] for e in ends_streaming] == [e["result"] for e in ends_plain]
|
||
|
||
|
||
def test_gguf_loop_emits_tool_output_between_start_and_end(monkeypatch):
|
||
def streaming_tool(
|
||
name,
|
||
arguments,
|
||
output_callback = None,
|
||
**_kwargs,
|
||
):
|
||
if output_callback is not None:
|
||
output_callback("progress 1\n")
|
||
output_callback("progress 2\n")
|
||
return "progress 1\nprogress 2\n"
|
||
|
||
events, _payloads = _run_gguf_tool_turn(monkeypatch, streaming_tool)
|
||
types = [e["type"] for e in events]
|
||
assert "tool_output" in types
|
||
start_idx = types.index("tool_start")
|
||
end_idx = types.index("tool_end")
|
||
output_indices = [i for i, t in enumerate(types) if t == "tool_output"]
|
||
assert all(start_idx < i < end_idx for i in output_indices)
|
||
streamed = "".join(e["text"] for e in events if e["type"] == "tool_output")
|
||
assert streamed == "progress 1\nprogress 2\n"
|
||
for e in events:
|
||
if e["type"] == "tool_output":
|
||
assert e["tool_name"] == "python"
|
||
assert e["tool_call_id"] == "call_1"
|
||
|
||
|
||
def test_gguf_loop_plain_tool_yields_no_tool_output(monkeypatch):
|
||
def plain_tool(name, arguments, **_kwargs):
|
||
return "quiet"
|
||
|
||
events, _payloads = _run_gguf_tool_turn(monkeypatch, plain_tool)
|
||
assert [e for e in events if e["type"] == "tool_output"] == []
|
||
|
||
|
||
# ── result truncation notice, env cap, missing-path healing ──────
|
||
|
||
import os as _os
|
||
import uuid as _uuid
|
||
|
||
from core.inference.tools import (
|
||
PYTHON_TOOL,
|
||
TERMINAL_TOOL,
|
||
_MAX_OUTPUT_CHARS,
|
||
_env_int,
|
||
_missing_path_hint,
|
||
_truncate,
|
||
get_sandbox_workdir,
|
||
)
|
||
|
||
|
||
def test_truncate_notice_is_neutral_and_mentions_workdir():
|
||
out = _truncate("y" * 50, limit = 10)
|
||
assert out.startswith("y" * 10)
|
||
assert "truncated" in out and "50 chars total" in out
|
||
assert "persist in the working directory" in out
|
||
# The notice must NOT claim the user saw the output: this wrapper also serves
|
||
# non-streaming callers where no output_callback delivers anything.
|
||
assert "the user was shown the full output" not in out
|
||
assert "shown" not in out
|
||
# Under the limit: untouched.
|
||
assert _truncate("short", limit = 10) == "short"
|
||
|
||
|
||
def test_truncated_result_identical_and_notice_neutral_with_streaming():
|
||
# The truncation notice must be byte-identical with and without an
|
||
# output_callback (the streaming vs non-streaming invariant a mode-dependent
|
||
# notice would break) and must not claim the user was shown the full output.
|
||
code = f"print('x' * {_MAX_OUTPUT_CHARS + 5000})"
|
||
baseline = _python_exec(code, timeout = 60)
|
||
streamed = _python_exec(code, timeout = 60, output_callback = lambda _t: None)
|
||
assert streamed == baseline
|
||
assert "truncated" in baseline
|
||
assert "the user was shown the full output" not in baseline
|
||
assert "persist in the working directory" in baseline
|
||
|
||
|
||
def test_result_cap_env_override(monkeypatch):
|
||
monkeypatch.delenv("UNSLOTH_TOOL_RESULT_MAX_CHARS", raising = False)
|
||
assert _env_int("UNSLOTH_TOOL_RESULT_MAX_CHARS", 16000) == 16000
|
||
monkeypatch.setenv("UNSLOTH_TOOL_RESULT_MAX_CHARS", "50000")
|
||
assert _env_int("UNSLOTH_TOOL_RESULT_MAX_CHARS", 16000) == 50000
|
||
# Garbage and non-positive values fall back to the default.
|
||
monkeypatch.setenv("UNSLOTH_TOOL_RESULT_MAX_CHARS", "lots")
|
||
assert _env_int("UNSLOTH_TOOL_RESULT_MAX_CHARS", 16000) == 16000
|
||
monkeypatch.setenv("UNSLOTH_TOOL_RESULT_MAX_CHARS", "-5")
|
||
assert _env_int("UNSLOTH_TOOL_RESULT_MAX_CHARS", 16000) == 16000
|
||
|
||
|
||
def test_missing_path_hint_detection():
|
||
err = "FileNotFoundError: [Errno 2] No such file or directory: '/mnt/data/x.html'"
|
||
hint = _missing_path_hint(err)
|
||
assert "working directory is writable" in hint
|
||
assert "relative path" in hint
|
||
# The hint echoes the actual failing path, not a canned example.
|
||
assert "'x.html', not '/mnt/data/x.html'" in hint
|
||
# A failure on a local path gets no hint.
|
||
assert _missing_path_hint("FileNotFoundError: 'local.txt'") == ""
|
||
# Mentioning /mnt/data without a file error gets no hint.
|
||
assert _missing_path_hint("saved to /mnt/data, all good") == ""
|
||
assert _missing_path_hint("") == ""
|
||
|
||
|
||
def test_missing_path_hint_generalizes_beyond_convention_prefixes():
|
||
# A hallucinated absolute path outside the enumerated prefixes still earns the
|
||
# hint, echoing that path.
|
||
err = (
|
||
"FileNotFoundError: [Errno 2] No such file or directory: "
|
||
"'/home/ubuntu/Sandbox/flappy_bird.html'"
|
||
)
|
||
hint = _missing_path_hint(err)
|
||
assert "working directory is writable" in hint
|
||
assert "'flappy_bird.html', not '/home/ubuntu/Sandbox/flappy_bird.html'" in hint
|
||
# A bash-style error on an absolute path outside the workdir is echoed too.
|
||
bash_err = "cat: /var/data/report.csv: No such file or directory"
|
||
assert "'report.csv', not '/var/data/report.csv'" in _missing_path_hint(bash_err)
|
||
|
||
|
||
def test_missing_path_hint_respects_project_workdir():
|
||
# Project-backed sessions run under a root OUTSIDE ~/studio_sandbox. A legitimate
|
||
# miss INSIDE that project workspace must not be misclassified as an external
|
||
# habit path and flattened to its basename; judged against the real workdir it
|
||
# gets no hint. The fabricated paths carry no convention prefix, so only the
|
||
# workdir judgement decides.
|
||
workdir = "/srv/projroot/session_area"
|
||
missing = "/srv/projroot/session_area/data/missing.csv"
|
||
output = f"FileNotFoundError: [Errno 2] No such file or directory: '{missing}'"
|
||
# Against the static sandbox root (no workdir) it looks external and wrongly earns the hint.
|
||
assert "working directory is writable" in _missing_path_hint(output)
|
||
# Against the real project workdir it is local -> no hint.
|
||
assert _missing_path_hint(output, workdir) == ""
|
||
# A path genuinely outside the project workdir still earns the hint.
|
||
outside_err = "FileNotFoundError: [Errno 2] No such file or directory: '/srv/other/x.html'"
|
||
assert "working directory is writable" in _missing_path_hint(outside_err, workdir)
|
||
|
||
|
||
def test_missing_path_hint_project_workdir_under_convention_prefix():
|
||
# A project workdir can live under a convention prefix like /workspace (common in
|
||
# containers). A genuine miss INSIDE it carries the "/workspace" substring but is
|
||
# a real local path, not a habit path: the convention fast path must not fire and
|
||
# flatten it to a bare basename (which would drop the project subdirectory).
|
||
workdir = "/workspace/proj"
|
||
nested = "/workspace/proj/sub/data.csv"
|
||
output = f"FileNotFoundError: [Errno 2] No such file or directory: '{nested}'"
|
||
# Against the real project workdir the miss is local -> no hint, so
|
||
# /workspace/proj/sub is not flattened away.
|
||
assert _missing_path_hint(output, workdir) == ""
|
||
# A miss at the project root itself is likewise local.
|
||
at_root = "/workspace/proj/data.csv"
|
||
root_output = f"FileNotFoundError: [Errno 2] No such file or directory: '{at_root}'"
|
||
assert _missing_path_hint(root_output, workdir) == ""
|
||
# A convention path genuinely outside the project workdir still earns the
|
||
# hint (e.g. a /mnt/data habit path with a /workspace-rooted project).
|
||
outside = "FileNotFoundError: [Errno 2] No such file or directory: '/mnt/data/x.html'"
|
||
assert "'x.html', not '/mnt/data/x.html'" in _missing_path_hint(outside, workdir)
|
||
# Without an explicit workdir the default sandbox root applies, so a
|
||
# /workspace path is out of sandbox and keeps the habit-path hint.
|
||
assert "working directory is writable" in _missing_path_hint(root_output)
|
||
|
||
|
||
def test_missing_path_hint_convention_scoped_to_failing_line():
|
||
# A convention prefix appearing only OUTSIDE the failing-path line (a traceback
|
||
# frame under /workspace, or the user's code printing /mnt/data) must not trigger
|
||
# the hint when the actual miss was a relative / in-workdir path.
|
||
frame_err = (
|
||
"Traceback (most recent call last):\n"
|
||
' File "/workspace/proj/script.py", line 5, in <module>\n'
|
||
" open('data.csv')\n"
|
||
"FileNotFoundError: [Errno 2] No such file or directory: 'data.csv'"
|
||
)
|
||
assert _missing_path_hint(frame_err) == ""
|
||
printed_err = (
|
||
"outputs go to /mnt/data normally\n"
|
||
"FileNotFoundError: [Errno 2] No such file or directory: 'notes.txt'"
|
||
)
|
||
assert _missing_path_hint(printed_err) == ""
|
||
# But a convention path ON the error line still earns the hint.
|
||
on_line = "FileNotFoundError: [Errno 2] No such file or directory: '/mnt/data/x.html'"
|
||
assert "'x.html', not '/mnt/data/x.html'" in _missing_path_hint(on_line)
|
||
|
||
|
||
def test_code_tool_descriptions_mention_relative_paths():
|
||
for tool in (PYTHON_TOOL, TERMINAL_TOOL):
|
||
description = tool["function"]["description"]
|
||
assert "relative paths" in description
|
||
assert "/mnt/data" in description
|
||
|
||
|
||
def test_python_exec_mnt_data_open_is_remapped_into_workdir():
|
||
# The shim remaps open()/os.makedirs() on /mnt/data into the sandbox CWD and
|
||
# prints a one-line stderr notice, identically with and without streaming.
|
||
fname = f"remap_{_uuid.uuid4().hex}.txt"
|
||
code = (
|
||
"import os\n"
|
||
"os.makedirs('/mnt/data', exist_ok=True)\n"
|
||
f"with open('/mnt/data/{fname}', 'w') as f:\n"
|
||
" f.write('hello remap')\n"
|
||
f"print(open('/mnt/data/{fname}').read())\n"
|
||
)
|
||
target = _os.path.join(get_sandbox_workdir(), fname)
|
||
try:
|
||
baseline = _python_exec(code, timeout = 60)
|
||
assert _os.path.isfile(target), baseline
|
||
with open(target) as f:
|
||
assert f.read() == "hello remap"
|
||
assert "hello remap" in baseline
|
||
assert "/mnt/data does not exist in this sandbox" in baseline
|
||
_os.remove(target)
|
||
streamed = _python_exec(code, timeout = 60, output_callback = lambda _t: None)
|
||
assert streamed == baseline
|
||
assert _os.path.isfile(target)
|
||
finally:
|
||
if _os.path.exists(target):
|
||
_os.remove(target)
|
||
|
||
|
||
def test_python_exec_pathlib_write_text_is_remapped_into_workdir():
|
||
# pathlib.Path.open / write_text / read_text call io.open directly,
|
||
# bypassing the builtins.open patch, so the shim must remap io.open too.
|
||
fname = f"remap_{_uuid.uuid4().hex}.txt"
|
||
code = (
|
||
"from pathlib import Path\n"
|
||
f"p = Path('/mnt/data/{fname}')\n"
|
||
"p.write_text('pathlib remap')\n"
|
||
"print(p.read_text())\n"
|
||
)
|
||
target = _os.path.join(get_sandbox_workdir(), fname)
|
||
try:
|
||
baseline = _python_exec(code, timeout = 60)
|
||
assert _os.path.isfile(target), baseline
|
||
with open(target) as f:
|
||
assert f.read() == "pathlib remap"
|
||
assert "pathlib remap" in baseline
|
||
assert "/mnt/data does not exist in this sandbox" in baseline
|
||
_os.remove(target)
|
||
streamed = _python_exec(code, timeout = 60, output_callback = lambda _t: None)
|
||
assert streamed == baseline
|
||
assert _os.path.isfile(target)
|
||
finally:
|
||
if _os.path.exists(target):
|
||
_os.remove(target)
|
||
|
||
|
||
def test_python_exec_hallucinated_absolute_write_is_remapped_into_workdir():
|
||
# The model invents an absolute path outside the enumerated prefixes and opens
|
||
# it for writing; the write-mode fallback redirects it to the basename in the
|
||
# sandbox workdir instead of dying with FileNotFoundError.
|
||
fname = f"remap_{_uuid.uuid4().hex}.html"
|
||
hallucinated = f"/nonexistent_root_xyz/Sandbox/{fname}"
|
||
# Read-back goes through the mapped basename: reads are never redirected, only
|
||
# the write is healed.
|
||
code = (
|
||
f"with open('{hallucinated}', 'w') as f:\n"
|
||
" f.write('hello fallback')\n"
|
||
f"print(open('{fname}').read())\n"
|
||
)
|
||
target = _os.path.join(get_sandbox_workdir(), fname)
|
||
try:
|
||
baseline = _python_exec(code, timeout = 60)
|
||
assert _os.path.isfile(target), baseline
|
||
with open(target) as f:
|
||
assert f.read() == "hello fallback"
|
||
assert "hello fallback" in baseline
|
||
assert "does not exist in this sandbox" in baseline
|
||
_os.remove(target)
|
||
streamed = _python_exec(code, timeout = 60, output_callback = lambda _t: None)
|
||
assert streamed == baseline
|
||
assert _os.path.isfile(target)
|
||
finally:
|
||
if _os.path.exists(target):
|
||
_os.remove(target)
|
||
|
||
|
||
def test_python_exec_unremapped_mnt_data_failure_gets_hint():
|
||
# os.listdir is deliberately not remapped: the failure carries the retry hint
|
||
# instead, identically with and without streaming.
|
||
import re as _re
|
||
|
||
code = "import os\nos.listdir('/mnt/data/nonexistent_dir_xyz')\n"
|
||
baseline = _python_exec(code, timeout = 60)
|
||
assert "FileNotFoundError" in baseline
|
||
assert "working directory is writable" in baseline
|
||
streamed = _python_exec(code, timeout = 60, output_callback = lambda _t: None)
|
||
|
||
# Normalize each run's random temp filename (byte-identity is per-execution).
|
||
def normalize(text: str) -> str:
|
||
return _re.sub(r"studio_exec_\w+\.py", "studio_exec.py", text)
|
||
|
||
assert normalize(streamed) == normalize(baseline)
|
||
|
||
|
||
def test_bash_exec_missing_path_hint():
|
||
baseline = _bash_exec("cat /mnt/data/definitely_missing.txt", timeout = 60)
|
||
assert "No such file or directory" in baseline
|
||
assert "working directory is writable" in baseline
|
||
streamed = _bash_exec(
|
||
"cat /mnt/data/definitely_missing.txt", timeout = 60, output_callback = lambda _t: None
|
||
)
|
||
assert streamed == baseline
|
||
|
||
|
||
def test_bash_exec_local_failure_gets_no_hint():
|
||
result = _bash_exec("cat definitely_missing_local_file.txt", timeout = 60)
|
||
assert "No such file or directory" in result
|
||
assert "working directory is writable" not in result
|
||
|
||
|
||
def test_producer_queue_is_bounded_under_tight_print_loop(monkeypatch):
|
||
# The consumer-side cap only bounds the concatenated stream; a fast worker can
|
||
# still enqueue unboundedly while the SSE consumer is backpressured. The producer
|
||
# boundary now discards callbacks past the cap so the queue cannot grow without
|
||
# limit (finding 12).
|
||
import queue as _queue
|
||
|
||
from core.inference import tool_stream_exec
|
||
|
||
observed = []
|
||
|
||
class _TrackingQueue(_queue.Queue):
|
||
def put(self, *args, **kwargs):
|
||
result = super().put(*args, **kwargs)
|
||
observed.append(self.qsize())
|
||
return result
|
||
|
||
monkeypatch.setattr(tool_stream_exec.queue, "Queue", _TrackingQueue)
|
||
|
||
def tool(callback):
|
||
for _ in range(200_000):
|
||
callback("x")
|
||
return "done"
|
||
|
||
events, result = _run_stream(tool, tool_name = "python")
|
||
assert result == "done"
|
||
# At most cap + 1 chars enter the queue, so 1-char items cannot exceed that
|
||
# regardless of consumer lag.
|
||
assert observed
|
||
assert max(observed) <= TOOL_OUTPUT_STREAM_MAX_CHARS + 2
|
||
|
||
|
||
def test_continuous_over_cap_output_does_not_starve_heartbeats():
|
||
# Once the cap is tripped, a continuously producing tool must not spin the drain
|
||
# forever with no heartbeat: callbacks past the budget never enter the queue, so
|
||
# the idle heartbeat path resumes (finding 13).
|
||
release = threading.Event()
|
||
|
||
def tool(callback):
|
||
callback("x" * (TOOL_OUTPUT_STREAM_MAX_CHARS + 10)) # trip the cap
|
||
while not release.is_set():
|
||
callback("spam") # discarded at the producer boundary
|
||
return "done"
|
||
|
||
watchdog = threading.Timer(8.0, release.set)
|
||
watchdog.start()
|
||
gen = stream_tool_execution(
|
||
tool,
|
||
tool_name = "python",
|
||
heartbeat_interval_s = 0.04,
|
||
poll_interval_s = 0.02,
|
||
)
|
||
events = []
|
||
result = None
|
||
try:
|
||
while True:
|
||
event = next(gen)
|
||
events.append(event)
|
||
if len([e for e in events if e["type"] == "heartbeat"]) >= 2:
|
||
release.set()
|
||
except StopIteration as stop:
|
||
result = stop.value
|
||
finally:
|
||
release.set()
|
||
watchdog.cancel()
|
||
assert result == "done"
|
||
assert len([e for e in events if e["type"] == "heartbeat"]) >= 2
|
||
|
||
|
||
def test_accepts_output_callback_signature_detection():
|
||
from core.inference.tool_stream_exec import accepts_output_callback
|
||
|
||
def legacy(
|
||
name,
|
||
arguments,
|
||
cancel_event = None,
|
||
timeout = None,
|
||
):
|
||
return "ok"
|
||
|
||
def modern(
|
||
name,
|
||
arguments,
|
||
output_callback = None,
|
||
):
|
||
return "ok"
|
||
|
||
def kwargs_only(name, arguments, **kw):
|
||
return "ok"
|
||
|
||
assert accepts_output_callback(legacy) is False
|
||
assert accepts_output_callback(modern) is True
|
||
assert accepts_output_callback(kwargs_only) is True
|
||
# Uninspectable callables (e.g. some builtins) fall back to not-supported.
|
||
assert accepts_output_callback(len) is False
|
||
|
||
|
||
@pytest.mark.skipif(sys.platform == "win32", reason = "POSIX process groups")
|
||
def test_bash_exec_nonstreaming_cancel_kills_grandchild_after_leader_exit(tmp_path):
|
||
# NON-streaming cancellation: the leader exits at once while a grandchild holds
|
||
# stdout. The cancel watcher loops on the leader's poll() and is gone, so before
|
||
# the fix communicate() blocked until the grandchild finished. The unified drain
|
||
# kills the captured group on cancel instead.
|
||
sentinel = tmp_path / "grandchild_ran"
|
||
command = f"( sleep 3; touch '{sentinel}' ) & echo parent-done"
|
||
cancel_event = threading.Event()
|
||
timer = threading.Timer(0.5, cancel_event.set)
|
||
timer.start()
|
||
started = time.monotonic()
|
||
try:
|
||
result = _bash_exec(command, cancel_event = cancel_event, timeout = 30)
|
||
finally:
|
||
timer.cancel()
|
||
assert time.monotonic() - started < 2.5
|
||
assert result == "Execution cancelled."
|
||
time.sleep(3.5)
|
||
assert not sentinel.exists(), "non-streaming cancel leaked a stdout-holding grandchild"
|
||
|
||
|
||
@pytest.mark.skipif(sys.platform == "win32", reason = "POSIX process groups")
|
||
def test_python_exec_nonstreaming_cancel_kills_grandchild_after_leader_exit(tmp_path):
|
||
sentinel = tmp_path / "grandchild_ran"
|
||
code = (
|
||
"import subprocess\n"
|
||
f"subprocess.Popen(['bash', '-c', \"sleep 3; touch '{sentinel}'\"])\n"
|
||
"print('parent-done')\n"
|
||
)
|
||
cancel_event = threading.Event()
|
||
timer = threading.Timer(0.5, cancel_event.set)
|
||
timer.start()
|
||
started = time.monotonic()
|
||
try:
|
||
result = _python_exec(code, cancel_event = cancel_event, timeout = 30)
|
||
finally:
|
||
timer.cancel()
|
||
assert time.monotonic() - started < 2.5
|
||
assert result == "Execution cancelled."
|
||
time.sleep(3.5)
|
||
assert not sentinel.exists(), "non-streaming cancel leaked a stdout-holding grandchild"
|