ai-agent-book 精选快照(<2MB 代码与文档,来自 github.com/bojieli/ai-agent-book)
Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s

This commit is contained in:
2026-08-20 13:12:50 +00:00
commit b119135836
10275 changed files with 3284984 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
"""Run Experiment 9-1 without an API key."""
from __future__ import annotations
import argparse
import json
from pathlib import Path
from calibration import calibration_report
from verifier import TrajectoryVerifier, diagnostic_utility, scalar_baseline
ROOT = Path(__file__).parent
def main() -> None:
parser = argparse.ArgumentParser(description="Experiment 9-1 trajectory verifier")
parser.add_argument("--judge", choices=("heuristic", "llm"), default="heuristic")
parser.add_argument("--model", help="real LLM model; defaults to LLM_MODEL or gpt-5.6")
args = parser.parse_args()
trajectories = json.loads((ROOT / "sample_trajectories.json").read_text(encoding="utf-8"))
if args.judge == "llm":
from llm_judge import OpenAIQualityJudge
verifier = TrajectoryVerifier(quality_judge=OpenAIQualityJudge(args.model))
else:
verifier = TrajectoryVerifier()
reports = [verifier.evaluate(item) for item in trajectories]
print(f"Experiment 9-1: three-layer customer-service trajectory verifier (judge={args.judge})\n")
for report in reports:
failed = [
item["dimension"] for item in report["dimensions"] if item["verdict"] == "fail"
]
print(f"{report['trajectory_id']:<24} score={report['overall_score']:.3f} "
f"decision={report['release_recommendation']:<16} failures={failed or ['none']}")
scalar = scalar_baseline(reports[1])
print("\nScalar baseline:", scalar)
print("Multidimensional diagnostic utility:", diagnostic_utility(reports[1]))
print("\nCalibration:")
print(json.dumps(calibration_report(trajectories, reports), ensure_ascii=False, indent=2))
if __name__ == "__main__":
main()