-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
150 lines (150 loc) · 4.36 KB
/
mkdocs.yml
File metadata and controls
150 lines (150 loc) · 4.36 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
site_name: Alloy (Python)
site_description: Python for logic. English for intelligence.
site_url: https://docs.alloy.fyi/
repo_url: https://github.com/lydakis/alloy
theme:
name: material
features:
- navigation.instant
- navigation.sections
- toc.follow
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/white-balance-sunny
name: Switch to light mode
logo: assets/logo.svg
favicon: assets/favicon.svg
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [src]
options:
docstring_style: google
show_root_heading: true
show_source: true
members_order: source
separate_signature: true
filters: ["!^_"]
- gen-files:
scripts:
- gen_linkset.py
- llmstxt:
full_output: llms-full.txt
sections:
"Overview":
- index.md: Intro
- whats-new.md: What's New
- equivalence.md: Equivalence
"Tutorial":
- tutorial/index.md: Tutorial (10 minutes)
"Guides":
- guide/core-concepts.md: Core Concepts
- guide/commands.md: Commands
- guide/structured-outputs.md: Structured Outputs
- guide/tools-and-workflows.md: Tools & Workflows
- guide/contracts.md: Contracts
- guide/configuration.md: Configuration
- guide/providers.md: Providers
- guide/production.md: Production
- guide/streaming.md: Streaming
- guide/pitfalls.md: Common Pitfalls
- typing.md: Typing
- observability.md: Observability
- tool_recipes.md: Tool Recipes
- cookbook.md: Cookbook
- contributing-docs.md: Contributing Docs
- roadmap.md: Roadmap
"Examples":
- examples/index.md: Examples Index
- examples/exploration.md: Exploration
- examples/commands.md: Commands
- examples/tools.md: Tools
- examples/workflows.md: Workflows
- examples/integration.md: Integration
"API":
- api/**/*.md
"Architecture":
- architecture/overview.md: Architecture Overview
- architecture/command-lifecycle.md: Command Lifecycle
- architecture/provider-abstraction.md: Provider Abstraction
- architecture/type-system.md: Type System
markdown_extensions:
- admonition
- codehilite
- toc:
permalink: true
- pymdownx.highlight
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
extra_css:
- assets/theme.css
extra_javascript:
- https://unpkg.com/[email protected]/dist/mermaid.min.js
- assets/mermaid-init.js
# (Removed Copy curl UI assets)
nav:
- Overview:
- index.md
- whats-new.md
- equivalence.md
- Tutorial:
- tutorial/index.md
- Guide:
- guide/core-concepts.md
- guide/commands.md
- guide/structured-outputs.md
- guide/tools-and-workflows.md
- guide/contracts.md
- guide/configuration.md
- guide/providers.md
- guide/production.md
- guide/streaming.md
- guide/pitfalls.md
- typing.md
- observability.md
- tool_recipes.md
- testing.md
- API Reference:
- Top-level: api/alloy.md
- Ask: api/ask.md
- Command: api/command.md
- Config: api/config.md
- Tools: api/tool.md
- Errors: api/errors.md
- Types: api/types.md
- Models:
- Base: api/models/base.md
- OpenAI: api/models/openai.md
- Anthropic: api/models/anthropic.md
- Gemini: api/models/gemini.md
- Ollama: api/models/ollama.md
- Examples:
- examples/index.md
- examples/exploration.md
- examples/commands.md
- examples/tools.md
- examples/workflows.md
- examples/integration.md
- Architecture:
- architecture/overview.md
- architecture/command-lifecycle.md
- architecture/provider-abstraction.md
- architecture/type-system.md
- Roadmap: roadmap.md
- Contributing Docs: contributing-docs.md