Files
ai-agent-book/chapter1/web-search-agent/tests/test_offline_demo.py
T
liqiang b119135836
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
ai-agent-book 精选快照(<2MB 代码与文档,来自 github.com/bojieli/ai-agent-book)
2026-08-20 13:12:50 +00:00

38 lines
1.1 KiB
Python

"""Tests for the deterministic offline ReAct demonstration."""
from agent import run_offline_demo
def test_offline_demo_returns_a_complete_deterministic_trace():
result = run_offline_demo("캐싱이 뭐야?", verbose=False)
assert result["question"] == "캐싱이 뭐야?"
assert [step["type"] for step in result["trace"]] == [
"thought",
"action",
"observation",
"thought",
"action",
"observation",
"answer",
]
assert result["answer"] == result["trace"][-1]["content"]
assert "离线示例轨迹" in result["answer"]
def test_offline_demo_verbose_mode_prints_each_trace_step(capsys):
result = run_offline_demo("question", verbose=True)
output = capsys.readouterr().out
assert output.count("💭") == 2
assert output.count("🔧") == 2
assert output.count("👀") == 2
assert output.count("✅") == 1
assert result["answer"] in output
def test_offline_demo_quiet_mode_prints_nothing(capsys):
run_offline_demo("question", verbose=False)
assert capsys.readouterr().out == ""