mirror of
https://github.com/val1813/kwcode.git
synced 2026-09-03 06:34:30 +08:00
核心成果:Eval 0%→20% (3/15 PASS),总测试通过数 294→377 (+28%) 新增: - usage_finder: AST确定性调用关系传递 - bug_decomposed: 多bug任务逐TestClass拆解修复 - 新文件创建: _maybe_create_missing_module - 工程约束注入: _detect_engineering_hints - 自适应采样: 大文件1次/小文件3次 - bench诊断报告系统: bench_diagnose.py 实验验证(数据说话): - diff格式对32B弊大于利(超时),已回滚 - 自适应采样解决超时但降低多样性 - usage_finder/bug_decomposed机制有效但受模型能力限制 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
6 lines
149 B
Python
6 lines
149 B
Python
try:
|
|
from importlib.metadata import version as _pkg_version
|
|
__version__ = _pkg_version("kwcode")
|
|
except Exception:
|
|
__version__ = "2.0.0"
|