-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
265 lines (257 loc) · 8.72 KB
/
Copy pathmkdocs.yml
File metadata and controls
265 lines (257 loc) · 8.72 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
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
site_name: AnyCode
site_description: AnyCode is a Python framework for orchestrating multi-agent AI teams with typed tools, dependency-aware task graphs, durable execution, provider-neutral adapters, and verification gates.
site_author: Quantlix
site_url: https://quantlix.github.io/anycode/
repo_url: https://github.com/Quantlix/anycode
repo_name: Quantlix/anycode
edit_uri: edit/main/site_docs/
docs_dir: site_docs
site_dir: site
copyright: >
Copyright © 2025–2026 Quantlix — released under the MIT License.
strict: true
theme:
name: material
custom_dir: overrides
language: en
logo: assets/logo.svg
favicon: assets/favicon.svg
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
annotation: material/plus-circle
font:
text: Inter
code: JetBrains Mono
features:
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.indexes
- navigation.top
- navigation.path
- navigation.footer
- toc.follow
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.action.edit
- content.action.view
- announce.dismiss
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: deep purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: deep purple
toggle:
icon: material/brightness-4
name: Switch to system preference
# Diátaxis organization: Tutorials (learning) → How-to Guides (tasks)
# → Concepts (understanding) → Reference (information).
nav:
- Home: index.md
- Tutorials:
- getting-started/index.md
- Get Started:
- Installation: getting-started/installation.md
- Quickstart: getting-started/quickstart.md
- Real-World Projects:
- Build a Code-Review Crew: tutorials/code-review-crew.md
- Research Assistant with Memory: tutorials/research-assistant.md
- A Resumable Pipeline: tutorials/resumable-pipeline.md
- Support-Ticket Triage: tutorials/support-triage.md
- How-to Guides:
- guides/index.md
- Build and Run:
- Function Tools: guides/function-tools.md
- Run a Crew: guides/crews.md
- Build a Workflow: guides/workflows.md
- Long-Horizon Agents: guides/long-horizon-agents.md
- Run a Multi-Agent Team: guides/multi-agent-team.md
- Work With Tools: guides/tools.md
- Structured Output: guides/structured-output.md
- Configure Providers: guides/providers.md
- Streaming and Reasoning:
- Stream Agent Output: guides/streaming.md
- Use Reasoning Models: guides/reasoning-models.md
- Memory and Context:
- Memory and RAG: guides/memory-and-rag.md
- Engineer the Context Window: guides/context-engineering.md
- Coordination:
- Route Tasks by Complexity: guides/routing.md
- Route Models With Policy: guides/policy-routing.md
- Agent Handoff: guides/handoff.md
- Self-Reflection: guides/reflection.md
- Reliability and Ops:
- Durable and Resumable Runs: guides/durability.md
- Configure Durability Backends: guides/durability-backends.md
- Propagate Identity and Policy: guides/execution-identity.md
- Run Work in Sandboxes: guides/sandbox-providers.md
- Host AnyCode Services: guides/hosting-services.md
- Human-in-the-Loop Approval: guides/human-in-the-loop.md
- Track and Cap Cost: guides/cost-tracking.md
- Verification Gates: guides/verification-gates.md
- Evaluate Agents: guides/evaluation.md
- Observability: guides/observability.md
- Map GenAI Telemetry: guides/genai-telemetry.md
- Portable Infrastructure: guides/portable-infrastructure.md
- Production Controls: guides/production-controls.md
- Production Readiness: guides/production-readiness.md
- Integrate and Extend:
- Connect MCP Servers: guides/mcp.md
- Extend With Plugins: guides/plugins.md
- Visualize Runs: guides/visualization.md
- Use YAML Config: guides/yaml-config.md
- Concepts:
- concepts/index.md
- Overview: concepts/overview.md
- Agents and Teams: concepts/agents-and-teams.md
- Reference:
- reference/index.md
- Recipes: reference/recipes.md
- Using AnyCode From an AI Agent: reference/llm-guide.md
- Public API: reference/public-api.md
- Complete API Inventory: reference/api-inventory.md
- Runtime Contracts and Baseline: reference/runtime-contracts.md
- Semantic Contracts: reference/semantic-contracts.md
- Security and Threat Model: reference/security.md
- Compatibility: reference/compatibility.md
- Built-in Tools: reference/built-in-tools.md
- Configuration: reference/configuration.md
- CLI: reference/cli.md
- Contributing:
- Development Workflow: contributing/development.md
- Maintainer Governance: contributing/maintainers.md
- Release Process: contributing/releasing.md
- Migrating to 0.10: contributing/migration-0.10.md
- Testing and CI: contributing/testing.md
- Architecture Decisions: contributing/architecture-decisions.md
- ADR Template: contributing/adr-template.md
- Contract Test Conventions: contributing/contract-tests.md
- Documentation Guide: contributing/docs-guide.md
- Docs Strategy and Case Studies: contributing/documentation-strategy.md
# The TypeScript page is reached via the header language switcher (extra.alternate),
# not the primary nav — keep it out of the tab bar but present in the build.
not_in_nav: |
/typescript/index.md
plugins:
- search
- social:
enabled: !ENV [CI, false]
cards_layout_options:
background_color: "#4f46e5"
color: "#ffffff"
- mkdocstrings:
handlers:
python:
paths:
- src
options:
docstring_style: google
members_order: source
separate_signature: true
show_bases: false
show_root_heading: true
show_source: false
show_signature_annotations: true
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
title: On this page
- pymdownx.betterem
- pymdownx.caret
- pymdownx.critic
- 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.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
base_path:
- .
check_paths: 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
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra:
version:
provider: mike
default: latest
alias: true
alternate:
- name: Python
link: ""
lang: en
- name: TypeScript
link: typescript/
lang: en
social:
- icon: fontawesome/brands/github
link: https://github.com/Quantlix/anycode
name: AnyCode on GitHub
- icon: fontawesome/brands/python
link: https://pypi.org/project/anycode-py/
name: anycode-py on PyPI
analytics:
provider: google
property: !ENV GOOGLE_ANALYTICS_KEY
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: Thanks for the feedback.
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for the feedback. Help us improve by
<a href="https://github.com/Quantlix/anycode/issues/new" target="_blank" rel="noopener">opening an issue</a>.
extra_css:
- stylesheets/extra.css
watch:
- src
- overrides