-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
208 lines (202 loc) · 6.71 KB
/
mkdocs.yml
File metadata and controls
208 lines (202 loc) · 6.71 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
site_name: Mamba Agents
site_description: Mamba Agents - A simple, extensible AI Agent framework built on pydantic-ai
site_url: https://sequenzia.github.io/mamba-agents
repo_url: https://github.com/sequenzia/mamba-agents
repo_name: sequenzia/mamba-agents
theme:
name: material
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: cyan
toggle:
icon: material/brightness-4
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: cyan
toggle:
icon: material/brightness-7
name: Switch to dark mode
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- toc.follow
- search.suggest
- search.highlight
- content.tabs.link
- content.code.copy
- content.code.annotate
icon:
repo: fontawesome/brands/github
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- Installation: getting-started/installation.md
- Quick Start: getting-started/quickstart.md
- Configuration: getting-started/configuration.md
- User Guide:
- user-guide/index.md
- Agent Basics: user-guide/agent-basics.md
- Working with Tools: user-guide/tools.md
- Context Management: user-guide/context-management.md
- Token Tracking: user-guide/token-tracking.md
- Message Querying: user-guide/message-querying.md
- Display Rendering: user-guide/display-rendering.md
- Prompt Management: user-guide/prompt-management.md
- Workflows: user-guide/workflows.md
- MCP Integration: user-guide/mcp-integration.md
- Model Backends: user-guide/model-backends.md
- Error Handling: user-guide/error-handling.md
- Observability: user-guide/observability.md
- Tutorials:
- tutorials/index.md
- Building a Code Assistant: tutorials/code-assistant.md
- Creating Custom Tools: tutorials/custom-tools.md
- ReAct Workflow Deep Dive: tutorials/react-workflow.md
- Local LLM Setup: tutorials/local-llm-setup.md
- Concepts:
- concepts/index.md
- Architecture Overview: concepts/architecture.md
- Agent Execution Loop: concepts/execution-loop.md
- Context Compaction Strategies: concepts/compaction-strategies.md
- Workflow Patterns: concepts/workflow-patterns.md
- API Reference:
- api/index.md
- Agent:
- api/agent/index.md
- Agent: api/agent/agent.md
- AgentConfig: api/agent/config.md
- AgentResult: api/agent/result.md
- Messages: api/agent/messages.md
- Display:
- api/agent/display.md
- Presets & Functions: api/agent/display-presets.md
- Renderers: api/agent/display-renderers.md
- Workflows:
- api/workflows/index.md
- Workflow Base: api/workflows/base.md
- ReActWorkflow: api/workflows/react.md
- WorkflowConfig: api/workflows/config.md
- WorkflowHooks: api/workflows/hooks.md
- Context:
- api/context/index.md
- ContextManager: api/context/manager.md
- CompactionConfig: api/context/config.md
- Compaction Strategies: api/context/strategies.md
- Tokens:
- api/tokens/index.md
- TokenCounter: api/tokens/counter.md
- UsageTracker: api/tokens/tracker.md
- CostEstimator: api/tokens/cost.md
- Prompts:
- api/prompts/index.md
- PromptManager: api/prompts/manager.md
- PromptTemplate: api/prompts/template.md
- Configuration: api/prompts/config.md
- Errors: api/prompts/errors.md
- Tools:
- api/tools/index.md
- Filesystem: api/tools/filesystem.md
- Bash: api/tools/bash.md
- Glob: api/tools/glob.md
- Grep: api/tools/grep.md
- ToolRegistry: api/tools/registry.md
- MCP:
- api/mcp/index.md
- MCPClientManager: api/mcp/client.md
- MCPServerConfig: api/mcp/config.md
- load_mcp_json: api/mcp/loader.md
- MCP Errors: api/mcp/errors.md
- Config:
- api/config/index.md
- AgentSettings: api/config/settings.md
- ModelBackendSettings: api/config/model-backend.md
- Other Configs: api/config/other.md
- Backends:
- api/backends/index.md
- OpenAICompatibleBackend: api/backends/openai-compat.md
- ModelProfile: api/backends/profiles.md
- Errors:
- api/errors/index.md
- Exceptions: api/errors/exceptions.md
- CircuitBreaker: api/errors/circuit-breaker.md
- Retry: api/errors/retry.md
- Observability:
- api/observability/index.md
- Logging: api/observability/logging.md
- Tracing: api/observability/tracing.md
- OpenTelemetry: api/observability/otel.md
- Changelog: changelog.md
- Contributing: contributing.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: true
show_root_heading: true
show_root_full_path: false
show_symbol_type_heading: true
show_symbol_type_toc: true
docstring_style: google
docstring_section_style: spacy
merge_init_into_class: true
show_signature_annotations: true
separate_signature: true
signature_crossrefs: true
members_order: source
filters:
- "!^_"
- "^__init__$"
markdown_extensions:
- 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:
base_path: ['.', 'docs']
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.details
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- admonition
- tables
- attr_list
- md_in_html
- def_list
- footnotes
- toc:
permalink: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/sequenzia/mamba-agents
version:
provider: mike
extra_css:
- stylesheets/extra.css