Spaces:
Sleeping
Sleeping
File size: 18,194 Bytes
920d80b 902cd29 920d80b 902cd29 920d80b 902cd29 920d80b 902cd29 920d80b 902cd29 920d80b 902cd29 920d80b 902cd29 920d80b 902cd29 920d80b 902cd29 920d80b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 | from __future__ import annotations
import argparse
from datetime import UTC, datetime
import json
import os
from pathlib import Path
import uuid
from openai import OpenAI
from db.seed import seed_project
from db.store import Store
from env.runtime_config import load_runtime_config
from parser.semantic_checks import detect_semantic_issues
from training.run_manager import TrainingRunManager
from training.weights import WeightSafetyManager
# Submission-required runtime variables.
HF_TOKEN = os.getenv("HF_TOKEN") or os.getenv("HFTOKEN")
LOCAL_IMAGE_NAME = os.getenv("LOCAL_IMAGE_NAME")
# Hosted fallback: if HF_TOKEN exists and endpoint/model are not explicitly provided,
# use Hugging Face Router with a stable instruct model.
if HF_TOKEN and not os.getenv("API_BASE_URL") and not os.getenv("GRAPHREVIEW_LLM_BASE_URL"):
API_BASE_URL = "https://router.huggingface.co/v1"
else:
API_BASE_URL = os.getenv("API_BASE_URL", os.getenv("GRAPHREVIEW_LLM_BASE_URL", "http://localhost:11434/v1"))
if HF_TOKEN and not os.getenv("MODEL_NAME"):
MODEL_NAME = "meta-llama/Meta-Llama-3.1-8B-Instruct"
else:
MODEL_NAME = os.getenv("MODEL_NAME", "gemma4:e4b")
# Keep current behavior for local Ollama while supporting hosted providers via HF_TOKEN.
API_KEY = HF_TOKEN or os.getenv("GRAPHREVIEW_LLM_API_KEY", "ollama")
def _build_parser() -> argparse.ArgumentParser:
parser = argparse.ArgumentParser(description="GraphReview deterministic inference/training harness")
parser.add_argument("target", help="Path to target Python project")
parser.add_argument("--db-path", default=None, help="Optional DB path")
parser.add_argument("--force-seed", action="store_true", help="Force re-seed")
parser.add_argument(
"--register-weights",
action="store_true",
help="Register model weights and write verification manifest",
)
parser.add_argument(
"--deterministic-output",
default="outputs/training/deterministic_findings.jsonl",
help="Path to write normalized deterministic findings",
)
parser.add_argument("--baseline-precision", type=float, default=None, help="Optional precision floor baseline")
parser.add_argument("--baseline-recall", type=float, default=None, help="Optional recall floor baseline")
parser.add_argument(
"--regression-tolerance",
type=float,
default=0.01,
help="Allowed drop from baseline precision/recall",
)
return parser
def _finding_key(analyzer: str, module_id: str, rule_id: str, line: int) -> str:
return f"{analyzer}:{module_id}:{rule_id}:{line}"
def _target_key(module_id: str, line: int) -> str:
return f"{module_id}:{line}"
def _safe_float(raw: str | None, default: float) -> float:
if raw is None:
return default
try:
return float(raw)
except ValueError:
return default
def _build_agent_prompt(module_id: str, code: str, ast_summary: str) -> str:
return (
"You are reviewing one Python module in a dependency-aware code review environment. "
"Do not rely on prior analyzer findings because they are hidden from you. "
"Find concrete, actionable issues only, with line numbers and confidence.\n\n"
"Your objectives are:\n"
"1) Identify real bug, security, or dependency-risk issues in the provided code.\n"
"2) Prefer deterministic evidence over speculative style feedback.\n"
"3) If you suspect cascade risk, explain likely upstream/downstream impact in rationale.\n"
"4) Return strictly valid JSON matching this schema: "
"{\"findings\": [{\"line\": int, \"category\": \"bug|security|dependency\", \"rule_hint\": str, \"message\": str, \"confidence\": float}]}.\n\n"
f"Module: {module_id}\n"
f"AST Summary: {ast_summary}\n"
"Code:\n"
f"{code}\n"
)
def _extract_agent_findings(store: Store, config) -> set[str]:
model = MODEL_NAME
base_url = API_BASE_URL
api_key = API_KEY
enabled = os.getenv("GRAPHREVIEW_AGENT_INFERENCE_ENABLED", "true").strip().lower() == "true"
findings: set[str] = set()
node_snapshot = store.get_full_graph().nodes
use_llm = enabled and base_url and model
client = OpenAI(api_key=api_key, base_url=base_url, timeout=12.0) if use_llm else None
llm_enabled = client is not None
if llm_enabled:
try:
models = client.models.list()
available = {item.id for item in models.data if getattr(item, "id", None)}
if model not in available:
print(
f"[STEP] agent_llm_fallback reason=model-not-found model={model} "
f"available_count={len(available)}"
)
llm_enabled = False
except Exception as exc:
print(f"[STEP] agent_llm_fallback reason=model-list-failed error={type(exc).__name__}")
llm_enabled = False
for node in node_snapshot:
node_row = store.get_node(node.module_id)
if node_row is None:
continue
module_id = node_row.module_id
code = node_row.raw_code
ast_summary = node_row.ast_summary
collected = False
if llm_enabled and client is not None:
prompt = _build_agent_prompt(module_id=module_id, code=code, ast_summary=ast_summary)
try:
resp = client.chat.completions.create(
model=model,
temperature=0.0,
response_format={"type": "json_object"},
messages=[
{
"role": "system",
"content": "Return only JSON. Do not include markdown. Keep claims concrete and line-specific.",
},
{"role": "user", "content": prompt},
],
)
text = (resp.choices[0].message.content or "{}").strip()
payload = json.loads(text)
rows = payload.get("findings", []) if isinstance(payload, dict) else []
if isinstance(rows, list):
for item in rows:
if not isinstance(item, dict):
continue
confidence = _safe_float(str(item.get("confidence", "0.0")), 0.0)
if confidence < 0.45:
continue
line = max(1, int(item.get("line", 1)))
category = str(item.get("category", "bug")).lower()
analyzer = "agent-security" if category == "security" else "agent-logic"
rule_hint = str(item.get("rule_hint") or "agent")[:80]
findings.add(_finding_key(analyzer, module_id, rule_hint, line))
collected = True
except Exception as exc:
print(
f"[STEP] agent_llm_fallback reason=completion-failed error={type(exc).__name__} "
f"module={module_id}"
)
llm_enabled = False
collected = False
if collected:
continue
# Deterministic fallback so training bootstrap still works offline.
deterministic_rows = store.get_analyzer_findings_for_module(module_id)
for finding in deterministic_rows[:2]:
findings.add(_finding_key("agent-fallback", module_id, finding.rule_id, finding.line))
for issue in detect_semantic_issues(code):
findings.add(_finding_key("agent-heuristic", module_id, issue.stage, max(issue.line, 1)))
return findings
def main() -> None:
args = _build_parser().parse_args()
config = load_runtime_config()
target = Path(args.target).resolve()
print(f"[START] target={target} model={MODEL_NAME} mode=deterministic-ground-truth")
weight_manager = WeightSafetyManager(Path(config.llm_weight_manifest_dir))
verified_weight_path: str | None = None
if args.register_weights:
try:
manifest = weight_manager.register_existing(
model_name=MODEL_NAME,
weight_path=Path(config.llm_model_agent_path),
)
print(
"[STEP] weights_registered "
+ json.dumps(
{
"model": manifest.model_name,
"sha256": manifest.sha256,
"size_bytes": manifest.size_bytes,
},
sort_keys=True,
)
)
except FileNotFoundError:
print(
f"[STEP] weights_register_skipped reason=missing-local-weights model={MODEL_NAME} "
f"path={config.llm_model_agent_path}"
)
try:
verified_weight_path = str(weight_manager.load_verified(MODEL_NAME))
except FileNotFoundError:
try:
manifest = weight_manager.register_existing(
model_name=MODEL_NAME,
weight_path=Path(config.llm_model_agent_path),
)
print(
"[STEP] weights_registered "
+ json.dumps(
{
"model": manifest.model_name,
"sha256": manifest.sha256,
"size_bytes": manifest.size_bytes,
},
sort_keys=True,
)
)
verified_weight_path = str(weight_manager.load_verified(MODEL_NAME))
except FileNotFoundError:
print(
f"[STEP] weights_unavailable reason=missing-local-weights model={MODEL_NAME} "
f"path={config.llm_model_agent_path}"
)
if verified_weight_path is not None:
print(f"[STEP] weights_verified path={verified_weight_path}")
else:
print("[STEP] weights_verified path=unavailable mode=api-only")
seed_result = seed_project(target_dir=target, db_path=args.db_path, force=args.force_seed)
print(f"[STEP] seeded {json.dumps(seed_result, sort_keys=True)}")
store = Store(source_root=str(target), db_path=args.db_path)
deterministic_findings = store.get_analyzer_findings()
deterministic_keys = {
_finding_key(item.analyzer, item.module_id, item.rule_id, item.line)
for item in deterministic_findings
}
deterministic_targets = {
_target_key(item.module_id, item.line)
for item in deterministic_findings
}
agent_keys = _extract_agent_findings(store=store, config=config)
agent_targets: set[str] = set()
for item in agent_keys:
parts = item.split(":")
if len(parts) < 4:
continue
module_id = parts[1]
try:
line = int(parts[-1])
except ValueError:
continue
agent_targets.add(_target_key(module_id, line))
manager = TrainingRunManager()
comparison = manager.compare(deterministic_findings=deterministic_targets, agent_findings=agent_targets)
records: list[dict[str, object]] = []
for finding in deterministic_findings:
reasoning_text = (
"<think>\n"
f"Deterministic analyzer {finding.analyzer} reported {finding.rule_id} at line {finding.line} in {finding.module_id}. "
"This is treated as supervised high-confidence signal for bootstrap training.\n"
"</think>\n"
"<action>\n"
+ json.dumps(
{
"action_type": "FLAG_BUG",
"target_line": finding.line,
"content": finding.message,
"attributed_to": None,
},
sort_keys=True,
)
+ "\n</action>"
)
records.append(
{
**manager.build_preference_record(
prompt=(
"Review the module and detect concrete bugs, security issues, and "
"dependency-attributed cascade problems without relying on prior findings."
),
agent_output=reasoning_text,
deterministic_targets=[
_finding_key(
finding.analyzer,
finding.module_id,
finding.rule_id,
finding.line,
)
],
reward=1.0,
),
"module_id": f"{target.name}/{finding.module_id}",
"text": reasoning_text,
"chosen": reasoning_text,
}
)
# Add a second deterministic variant to keep training volume healthy for small corpora.
reasoning_text_variant = (
"<think>\n"
f"Cross-check confirms a reproducible issue in {finding.module_id} at line {finding.line}. "
f"Rule hint={finding.rule_id}; analyzer={finding.analyzer}. "
"Action should prioritize precise attribution and concrete remediation notes.\n"
"</think>\n"
"<action>\n"
+ json.dumps(
{
"action_type": "FLAG_BUG",
"target_line": finding.line,
"content": f"[verified] {finding.message}",
"attributed_to": None,
},
sort_keys=True,
)
+ "\n</action>"
)
records.append(
{
**manager.build_preference_record(
prompt=(
"Re-check this module and emit an evidence-based action with strict line attribution."
),
agent_output=reasoning_text_variant,
deterministic_targets=[
_finding_key(
finding.analyzer,
finding.module_id,
finding.rule_id,
finding.line,
)
],
reward=1.0,
),
"module_id": f"{target.name}/{finding.module_id}",
"text": reasoning_text_variant,
"chosen": reasoning_text_variant,
}
)
output_path = Path(args.deterministic_output)
manager.save_records(output_path, records)
baseline_precision = args.baseline_precision
baseline_recall = args.baseline_recall
prior_runs = store.list_training_runs(limit=100)
if baseline_precision is None and prior_runs:
baseline_precision = max(item.precision for item in prior_runs)
if baseline_recall is None and prior_runs:
baseline_recall = max(item.recall for item in prior_runs)
passed_non_regression = True
if baseline_precision is not None and baseline_recall is not None:
try:
manager.assert_non_regression(
baseline_precision=baseline_precision,
baseline_recall=baseline_recall,
current_precision=comparison.precision,
current_recall=comparison.recall,
tolerance=args.regression_tolerance,
)
except ValueError as exc:
passed_non_regression = False
print(f"[STEP] non_regression_guard_failed reason={str(exc)}")
else:
print(
"[STEP] non_regression_guard "
+ json.dumps(
{
"baseline_precision": baseline_precision,
"baseline_recall": baseline_recall,
"tolerance": args.regression_tolerance,
},
sort_keys=True,
)
)
print(
"[STEP] training_dataset "
+ json.dumps(
{
"output": str(output_path),
"records": len(records),
"precision": comparison.precision,
"recall": comparison.recall,
"false_negatives": comparison.false_negatives,
},
sort_keys=True,
)
)
run_id = f"tr-{datetime.now(UTC).strftime('%Y%m%d%H%M%S')}-{uuid.uuid4().hex[:8]}"
run_config = {
"target": str(target),
"model": MODEL_NAME,
"model_path": config.llm_model_agent_path,
"agent_inference_enabled": os.getenv("GRAPHREVIEW_AGENT_INFERENCE_ENABLED", "true"),
"regression_tolerance": args.regression_tolerance,
"baseline_precision": baseline_precision,
"baseline_recall": baseline_recall,
}
sha256 = "unavailable"
if verified_weight_path is not None:
sha256 = weight_manager.checksum(Path(verified_weight_path))
store.create_training_run(
run_id=run_id,
model_name=MODEL_NAME,
model_sha256=sha256,
deterministic_findings=len(deterministic_keys),
agent_findings=len(agent_keys),
true_positives=comparison.true_positives,
false_positives=comparison.false_positives,
false_negatives=comparison.false_negatives,
precision=comparison.precision,
recall=comparison.recall,
passed_non_regression=passed_non_regression,
output_path=str(output_path),
run_config_json=json.dumps(run_config, sort_keys=True),
)
print(f"[STEP] training_run_id={run_id}")
print(
"[END] "
+ json.dumps(
{
"ok": True,
"deterministic_findings": len(deterministic_findings),
"agent_findings": len(agent_keys),
"model_weight": verified_weight_path or "unavailable",
"model": MODEL_NAME,
"precision": comparison.precision,
"recall": comparison.recall,
"run_id": run_id,
},
sort_keys=True,
)
)
if __name__ == "__main__":
main()
|