forked from googleapis/genai-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
155 lines (148 loc) · 5.44 KB
/
mkdocs.yml
File metadata and controls
155 lines (148 loc) · 5.44 KB
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
# Project information
site_name: Agent2Agent Protocol (A2A)
site_url: https://google-a2a.github.io/A2A/
site_description: >-
An open protocol enabling communication and interoperability between opaque agentic applications.
site_dir: site
# Navigation
nav:
- Home: index.md
- Topics:
- What is A2A?: topics/what-is-a2a.md
- Key Concepts: topics/key-concepts.md
- A2A and MCP: topics/a2a-and-mcp.md
- Agent Discovery: topics/agent-discovery.md
- Enterprise-Ready Features: topics/enterprise-ready.md
- Streaming & Asynchronous Operations: topics/streaming-and-async.md
- Specification: specification.md
- Community: community.md
- Partners: partners.md
- SDK Reference:
- Python: sdk/python/index.md
- Tutorial (Python):
- Introduction: tutorials/python/1-introduction.md
- Setup: tutorials/python/2-setup.md
- Agent Skills & Agent Card: tutorials/python/3-agent-skills-and-card.md
- Agent Executor: tutorials/python/4-agent-executor.md
- Start Server: tutorials/python/5-start-server.md
- Interact with Server: tutorials/python/6-interact-with-server.md
- Streaming & Multiturn: tutorials/python/7-streaming-and-multiturn.md
- Next Steps: tutorials/python/8-next-steps.md
# Repository
repo_name: google-a2a/A2A
repo_url: https://github.com/google-a2a/A2A
# Copyright
copyright: Copyright Google 2025
# Custom CSS
extra_css:
- stylesheets/custom.css
# Configuration
theme:
name: material
font:
text: Google Sans
code: Roboto Mono
logo: assets/a2a-logo-white.svg
favicon: assets/a2a-logo-black.svg
icon:
repo: fontawesome/brands/github
palette:
- scheme: default
primary: indigo
accent: white
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: white
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.annotate
- content.code.copy
- content.code.select
- content.tabs.link
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.progress
- navigation.path
- navigation.tabs
- navigation.top
- navigation.tracking
- toc.follow
# Extensions
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
url_download: true
dedent_subsections: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- toc:
permalink: true
# Plugins
plugins:
- search
- redirects:
redirect_maps:
"spec-json.md": https://raw.githubusercontent.com/google-a2a/A2A/refs/heads/main/specification/json/a2a.json
"specification/overview.md": "specification.md"
"specification/agent-card.md": "specification.md#5-agent-discovery-the-agent-card"
"specification/agent-to-agent-communication.md": "specification.md#6-protocol-data-objects"
"specification/sample-messages.md": "specification.md#9-common-workflows-examples"
"specification/details.md": "specification.md"
"documentation.md": "topics/key-concepts.md"
"resources.md": "index.md"
"topics/push-notifications.md": "topics/streaming-and-async.md"
"specification/topics/a2a_and_mcp.md": "topics/a2a-and-mcp.md"
"specification/topics/agent_discovery.md": "topics/agent-discovery.md"
"specification/topics/enterprise_ready.md": "topics/enterprise-ready.md"
"specification/topics/push_notification.md": "topics/streaming-and-async.md"
"specification/topics/push_notifications.md": "topics/streaming-and-async.md"
"topics/index.md": "topics/what-is-a2a.md"
# Tutorial
"tutorials/index.md": "tutorials/python/1-introduction.md"
"tutorials/python/index.md": "tutorials/python/1-introduction.md"
"tutorials/python/1_introduction.md": "tutorials/python/1-introduction.md"
"tutorials/python/3-create-project.md": "tutorials/python/2-setup.md"
"tutorials/python/4-agent-skills.md": "tutorials/python/3-agent-skills-and-card.md"
"tutorials/python/5-add-agent-card.md": "tutorials/python/3-agent-skills-and-card.md"
"tutorials/python/6-start-server.md": "tutorials/python/5-start-server.md"
"tutorials/python/7-interact-with-server.md": "tutorials/python/6-interact-with-server.md"
"tutorials/python/8-agent-capabilities.md": "tutorials/python/7-streaming-and-multiturn.md"
"tutorials/python/9-ollama-agent.md": "tutorials/python/7-streaming-and-multiturn.md"
"tutorials/python/10-next-steps.md": "tutorials/python/8-next-steps.md"
- mkdocstrings:
handlers:
python:
options:
show_root_heading: false
show_object_full_path: false
show_if_no_docstring: true
filters: ["!^_"]
extra:
show_value: true
show_qualifiers: false