Allow longer deep research extraction timeouts (#651)

Co-authored-by: NovaUnboundAi <NovaUnboundAi@users.noreply.github.com>
This commit is contained in:
NovaUnboundAi
2026-06-02 04:50:03 +02:00
committed by GitHub
parent 247df16e82
commit 3319310942
5 changed files with 14 additions and 4 deletions
@@ -86,3 +86,13 @@ async def test_fetch_and_extract_uses_configured_timeout(monkeypatch):
assert result["summary"] == "useful page content"
assert captured["timeout"] == 123
def test_extraction_timeout_allows_long_local_model_runs():
researcher = DeepResearcher(
llm_endpoint="http://local.test/v1/chat/completions",
llm_model="local-model",
extraction_timeout=1800,
)
assert researcher.extraction_timeout == 1800