Fix research pipeline budget tracking

This commit is contained in:
faligam
2026-09-07 11:56:13 +02:00
parent a5324d3971
commit 5f237d535f
7 changed files with 148 additions and 17 deletions

View File

@@ -66,7 +66,7 @@ DEPTH_CONFIGS: dict[str, DepthConfig] = {
max_pages_per_domain=2,
max_total_download_bytes=500_000,
max_llm_requests=15,
max_research_duration_seconds=300,
max_research_duration_seconds=1_800,
max_context_per_llm_call=16_000,
),
"normal": DepthConfig(
@@ -76,7 +76,7 @@ DEPTH_CONFIGS: dict[str, DepthConfig] = {
max_pages_per_domain=5,
max_total_download_bytes=2_000_000,
max_llm_requests=30,
max_research_duration_seconds=300,
max_research_duration_seconds=3_600,
max_context_per_llm_call=24_000,
),
"deep": DepthConfig(
@@ -86,7 +86,7 @@ DEPTH_CONFIGS: dict[str, DepthConfig] = {
max_pages_per_domain=10,
max_total_download_bytes=5_000_000,
max_llm_requests=60,
max_research_duration_seconds=600,
max_research_duration_seconds=7_200,
max_context_per_llm_call=32_000,
),
}