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
31 lines
1.4 KiB
XML
31 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- Logo for "深入理解 AI Agent".
|
|
Visualises the book's core formula Agent = LLM + Context + Tools
|
|
with three linked nodes (brain / eye / hand). Indigo palette to
|
|
match the Material theme's primary colour. -->
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" role="img" aria-label="AI Agent">
|
|
<defs>
|
|
<linearGradient id="g1" x1="0" y1="0" x2="1" y2="1">
|
|
<stop offset="0" stop-color="#6f42c1"/>
|
|
<stop offset="1" stop-color="#4a2c8a"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="64" height="64" rx="14" fill="url(#g1)"/>
|
|
<!-- Three nodes: brain (LLM), eye (Context), hand (Tools) -->
|
|
<g fill="none" stroke="#fff" stroke-width="2.4" stroke-linecap="round">
|
|
<!-- connecting lines = the "+" and "=" -->
|
|
<line x1="20" y1="22" x2="32" y2="40"/>
|
|
<line x1="44" y1="22" x2="32" y2="40"/>
|
|
<line x1="32" y1="40" x2="32" y2="48"/>
|
|
</g>
|
|
<!-- LLM node (top-left) -->
|
|
<circle cx="20" cy="22" r="7" fill="#fff"/>
|
|
<circle cx="20" cy="22" r="3" fill="#6f42c1"/>
|
|
<!-- Tools node (top-right) -->
|
|
<circle cx="44" cy="22" r="7" fill="#fff"/>
|
|
<path d="M41 22 h6 M44 19 v6" stroke="#6f42c1" stroke-width="2" stroke-linecap="round"/>
|
|
<!-- Context node (bottom) -->
|
|
<circle cx="32" cy="48" r="7" fill="#fff"/>
|
|
<circle cx="32" cy="48" r="3" fill="none" stroke="#6f42c1" stroke-width="2"/>
|
|
</svg>
|