iomgaa
56fe138a46
feat(tools): batch tree build orchestration with shared API semaphore
2026-07-11 11:56:36 -04:00
iomgaa
978ddef91b
feat(tools): add build_trees skeleton with discovery helpers
2026-07-11 11:41:22 -04:00
iomgaa
e9073bfdc2
feat(tree): expose build_async and accept injected API semaphore
...
Core algorithms #1/#2/#3 unchanged: only entry wrapping and semaphore
source switch (injected vs self-built); build logic untouched.
- rename _build_async to public build_async (body unchanged)
- __init__ accepts keyword-only api_semaphore for cross-video sharing
- default path (no injection) is verbatim-equivalent to previous code
2026-07-11 11:14:45 -04:00
iomgaa
25f5537974
docs(plans): add Spec-2 batch tree build implementation plan
2026-07-11 11:11:02 -04:00
iomgaa
1d2385291a
docs(wiki): record Spec-1 harness-eval finding (all metrics pass)
2026-07-11 09:33:53 -04:00
iomgaa
40b156cf69
docs(wiki): record final Codex PASS for recipe redesign round
2026-07-11 09:08:27 -04:00
iomgaa
ebbd112d50
fix(tree): move Iterable import into type-checking block
2026-07-11 09:05:04 -04:00
iomgaa
a046862ca1
docs(wiki): record build-tree recipe redesign and diagnosis stage tags
2026-07-11 09:04:57 -04:00
iomgaa
f0284199b8
refactor(tree): narrow _clean_join parameter type to Iterable
2026-07-11 09:04:25 -04:00
iomgaa
1c21e215e2
test(tree): cover L1 entity fields and block ordering in view_node
2026-07-11 09:02:03 -04:00
iomgaa
a2c6a97621
refactor(tree): extract _clean_join to keep entity-fields complexity at B
...
质量门要求新增代码复杂度不超过 B 级:将 node_entity_fields 中重复的
"清洗-去重-拼接"逻辑抽为模块级纯函数 _clean_join,主体收敛为两次
调用。radon:node_entity_fields C(13) → B(6),_clean_join A(5)。
算法 #11(树环境语义搜索)数据访问层,行为不变(既有 4 测试未改全绿)。
2026-07-11 08:56:17 -04:00
iomgaa
4e0e05210d
feat(search): append raw entity fields after view_node summary
...
view_node 按题两轮摘要(summarize_node)会吞掉 entities/visible_text
字段信号,Agent 站在证据节点上仍漏读实体(benchmark 错题 M1,案例
786-2、872-3、750-1)。dispatcher 侧在摘要后确定性追加 [实体]/[画面
文字] 原文区块,LLM 无法吞掉。
- TreeEnvironment.node_entity_fields:按层级取 card 实体字段原文,
去空白、去重、分号拼接;空字段省键;未知节点抛 KeyError
- _handle_view_node Phase 2.5:摘要后、子节点概览前追加实体区块
- 附带 ruff format 修正 test_tree_environment.py 两处既有格式
算法 #11(树环境语义搜索)数据访问层扩展,不改搜索算法本身。
2026-07-11 08:53:56 -04:00
iomgaa
291a8108e1
test(agent): tighten type annotations in step-retry tests
2026-07-11 08:48:04 -04:00
iomgaa
badfcce4cb
fix(agent): validate non-empty retry delays; pin exhaustion semantics
...
核心算法 #10(Agent Loop):Codex 质量审查跟进,仅加固防御与
可观测,不改变循环语义。
- __init__ 校验 step_retry_delays 非空,空序列直接抛 ValueError
(P5 fail-fast,避免首次可重试异常时 IndexError 掩盖原始 LLM
异常、违背方法契约)
- 补耗尽语义窄测试(耗尽后原样抛出最后一次原始异常)与空序列
构造校验测试
- run() 最终失败日志补异常类型名,便于回溯归因
2026-07-11 08:44:47 -04:00
iomgaa
e3184c11f9
feat(agent): step-level retry for transient LLM errors (20s/40s backoff)
...
核心算法 #10(Agent Loop):仅加固异常路径的韧性兜底,不改变
解析协议、hook 时序与步数语义。benchmark 错题 796-3 显示一次
SSL BAD_RECORD_MAC 穿透 GovernedLLMClient 重试栈后废掉 13 步
已积累上下文;本次在 run() Phase 1 增加步级重试(默认 2 次,
20s/40s 退避),可重试异常限定 (TimeoutError, OSError),非可
重试异常照旧 fail-fast 整题终止,行为与现状一致(P5 显式异常)。
为满足 radon C 级复杂度约束,重试循环抽取为私有方法
_call_llm_with_step_retry,行为不变。
2026-07-11 08:37:35 -04:00
iomgaa
cf529f2c8f
test(agent): add docstring to empty-content boundary test
2026-07-11 08:33:36 -04:00
iomgaa
439dc29b3b
fix(agent): reject argless action in normalization; add boundary test
...
核心算法 #10(Agent Loop):修复 Codex 质量审查 Critical——
_normalize_action 仅在除 tool 外至少存在一个平铺参数键时才收拢,
{"tool": "x"} 无参结构不再被静默升级为空 args 合法结构,照旧
返回 None 走 retry 追问路径。补边界测试 + 测试辅助方法类型注解
与中文 docstring。
2026-07-11 08:28:59 -04:00
iomgaa
6034d4172d
test(question_gen): update __all__ assertion to include synthesizer exports
2026-07-11 08:21:06 -04:00
iomgaa
a31b1fbf37
test(question_gen): drop tests for removed calibrate pairing validator
2026-07-11 08:19:45 -04:00
iomgaa
8d84d5e236
fix(agent): normalize fenced and flat-args LLM outputs in parser
...
核心算法 #10(Agent Loop):仅加固 _parse_response 解析路径——
剥除 ```json 围栏 + 收拢 action 平铺参数(deepseek 稳定输出变体,
案例 637-3/615-3 三连拒 0 步阵亡)。Thinking+JSON 协议、json_repair
兜底链、hook 时序与步数语义均未改动。
2026-07-11 08:16:28 -04:00
iomgaa
39c6352781
docs(plans): add Spec-1 implementation plan with Codex review fixes
2026-07-11 08:12:07 -04:00
iomgaa
ef402c46a2
docs(designs): apply Codex review fixes to Spec-1/2/3
2026-07-11 07:54:48 -04:00
iomgaa
a5666b4f16
docs(wiki): record tree-figure style unification and review fixes
2026-07-11 07:52:22 -04:00
iomgaa
a79c2ec753
docs(wiki): add three-round analysis findings and Spec-1/2/3 designs
2026-07-11 07:45:51 -04:00
iomgaa
658e62054e
feat(scripts): add generated-questions infer and calibrate entry
2026-07-11 07:45:42 -04:00
iomgaa
da70eb6e23
refactor(question_gen): slim calibrate to compare two existing runs
2026-07-11 07:45:42 -04:00
iomgaa
307c64c388
fix(harness): infer mode honors CLI --questions over manifest
2026-07-11 07:45:33 -04:00
iomgaa
735471df3c
fix(question_gen): Information Synopsis 去重阈值放宽至 0.90
...
该题型天然高相似(benchmark 均值 0.66,中位数 0.67),
通用阈值 0.75/0.85 导致几乎所有新题被误判重复。
按题型覆盖为 0.90,只拦截真正的复制品。
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-10 08:55:47 -04:00
iomgaa
25c8d5ec42
fix(question_gen): 每次重试换视频避免同视频反复去重失败
...
Information Synopsis 163 道 benchmark 题,同一视频反复出题
必然相似。改为每次重试随机选不同视频。
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-10 08:15:03 -04:00
iomgaa
d0148e78ad
docs(wiki): record main-figure final review verdict and caption notes
2026-07-10 01:40:04 -04:00
iomgaa
6a6aae081b
docs(wiki): record main-figure final layout and panel decisions
2026-07-10 01:38:25 -04:00
iomgaa
69a4d17c0b
config: LLM 总超时 120s→300s(5 分钟)
...
VLM 题目生成(图片+出题+4选项)输出长,120s 不够。
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-10 01:11:40 -04:00
iomgaa
5b51f4bd0c
fix(synthesizer): generate_one 捕获所有异常避免 VLM 超时穿透崩溃
...
except (ValueError, KeyError) → except Exception,
覆盖 StreamLivenessTimeout 等网络/超时异常。
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-10 01:08:03 -04:00
iomgaa
8d11513e54
fix: 禁止日志缓存,确保所有日志立刻输出
...
- scripts/*.sh: PYTHONUNBUFFERED=1
- tools/generate_questions.py: loguru file sink enqueue=False
- main.py: loguru file sink enqueue=False
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 23:15:02 -04:00
iomgaa
c191be16e2
fix(question_gen): L3 frame_path 拼接视频目录前缀
...
tree.json 中 frame_path 是相对路径(frames/xxx.jpg),
generate_questions 需要拼上 store/videos/{video_id}/ 前缀供 VLM 读取。
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 23:10:18 -04:00
iomgaa
09b2773375
config(scripts): generate_questions 默认并发 8→16
...
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 23:07:57 -04:00
iomgaa
c84de49dc4
feat(main): loguru 文件 sink 持久化运行日志
...
logs/run_YYYYMMDD_HHmmss.log,500MB 轮转,保留 30 天,
enqueue=True 异步写入不阻塞推理。
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 22:56:34 -04:00
iomgaa
75016c4892
feat(scripts): generate_questions.sh 题目生成实验入口
...
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 22:53:28 -04:00
iomgaa
4ebdf0b0ba
fix(main): InfraSettings 默认值同步 retry_base=20 retry_max=120
...
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 22:16:22 -04:00
iomgaa
1f83da9eb7
fix: embedding 改 cuda + OCR 超时 300s + 重试退避 20s 起 + jitter 防雷群
...
- config/default.yaml: embed.device cpu → cuda
- adapters/ocr.py: _TIMEOUT_S 15 → 300(5 分钟)
- adapters/llm.py: 指数退避加 ±50% jitter 避免 24 路同时重试
- .env: LLM_RETRY_BASE_DELAY 2→20s, LLM_RETRY_MAX_DELAY 30→120s
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 22:14:57 -04:00
iomgaa
38a855b33e
fix(scripts): 加 HF_HUB_OFFLINE 跳过在线检查
...
embedding 模型已有本地缓存,网络不通时避免连接 huggingface.co 失败。
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 13:56:25 -04:00
iomgaa
d6ae0d85cd
fix: Redis 缓存构造修正 + TTL=0 永不过期支持
...
- main.py: 先创建 aioredis 客户端再传入 RedisResponseCache
- redis_cache.py: ttl_s=None 时不设过期时间
- .env: REDIS_CACHE_TTL=0(永不过期)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 13:52:33 -04:00
iomgaa
953fb7a456
feat(scripts): infer_video_mme.sh 推理实验入口
...
零参数全量 900 题、N_SAMPLES smoke test、TASK_TYPES 筛选、版本覆盖。
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 13:40:31 -04:00
iomgaa
cabe5be038
fix(main): assemble_mode 从 'default' 修正为 'ids_expand'
...
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 13:21:05 -04:00
iomgaa
f8f8b5b12d
feat: main.py Composition Root(仅 infer 模式)
...
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 12:27:13 -04:00
iomgaa
ba400417e2
config: concurrency=24, max_steps=40, breaker_threshold=48
...
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 12:27:05 -04:00
iomgaa
a7ca6d15ed
feat(harness): InferenceDepsRouter per-video 路由器
...
按 video_id 懒加载 InferenceDeps 并缓存,路由 dispatch/prompt_builder:
- create_dispatch: 按 session_id 路由到对应视频的工具调度
- create_prompt_builder: 自动注册 qid→vid 映射并路由 prompt 构建
- 三元组 (video_id, skills_dir, prompts_dir) 缓存键
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 12:20:32 -04:00
iomgaa
f21bf345a6
feat(runner): 注入 tool_dispatch_factory/prompt_builder_factory + fail-fast
...
Runner.__init__ 新增 2 个可选参数:
- tool_dispatch_factory: 工具调度工厂
- prompt_builder_factory: prompt 构建工厂
infer/eval/train 模式缺少工厂时 fail-fast 抛 ValueError。
_make_tool_dispatch_fn/_make_prompt_builder 优先使用注入工厂。
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 12:20:25 -04:00
iomgaa
924160c779
feat(ports): 新增 ToolDispatchFactory/PromptBuilderFactory Protocol
...
4 个新 Protocol 类型:
- ToolDispatchFn: 工具调度函数签名
- ToolDispatchFactory: per-version 工具调度工厂
- PromptBuilderFn: Prompt 构建函数签名
- PromptBuilderFactory: per-version prompt 构建工厂
含 runtime_checkable isinstance 测试。
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 12:20:16 -04:00
iomgaa
e7be42570d
feat(store): skills/v1 初始集 — TRM4 精简 + TRM5 card 字段注入
...
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-07-09 12:12:47 -04:00