-
Notifications
You must be signed in to change notification settings - Fork 22
/
mkdocs.yml
122 lines (117 loc) · 3.8 KB
/
mkdocs.yml
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
site_name: Funcchain - Docs
site_author: Shroominic
site_url: https://shroominic.github.io/funcchain/
repo_name: shroominic/funcchain
repo_url: https://github.com/shroominic/funcchain/
nav:
- "Funcchain": "index.md"
- "Getting Started":
- "Installation": "getting-started/installation.md"
- "Usage": "getting-started/usage.md"
- "Demos": "getting-started/demos.md"
- "Configuration": "getting-started/config.md"
- "Models": "getting-started/models.md"
- "Concepts":
- "Overview": "concepts/overview.md"
- "Chain": "concepts/chain.md"
- "Input Args": "concepts/input.md"
- "Prompting": "concepts/prompting.md"
- "Output Parsing": "concepts/parser.md"
- "Errors": "concepts/errors.md"
- "Langchain": "concepts/langchain.md"
- "Pydantic": "concepts/pydantic.md"
- "Local Models": "concepts/local-models.md"
- "Streaming": "concepts/streaming.md"
- "Unions": "concepts/unions.md"
- "Vision": "concepts/vision.md"
- "Dependencies": "concepts/dependencies.md"
- "Examples":
- "Enums": "features/enums.md"
- "Structured vision output": "features/vision.md"
- "Error Output": "features/error_output.md"
- "Retry Parsing": "features/retry_parsing.md"
- "Literals": "features/literals.md"
- "Static Router": "features/static_router.md"
- "Dynamic Router": "features/dynamic_router.md"
- "LlamaCpp": "features/llamacpp.md"
- "Ollama": "features/ollama.md"
- "OpenAI JSON Output": "features/openai_json_mode.md"
- "Streaming Output": "features/stream.md"
- "Advanced":
- "Async": "advanced/async.md"
- "Signature": "advanced/signature.md"
- "Runnables": "advanced/runnables.md"
- "Codebase Scaling": "advanced/codebase-scaling.md"
- "Customization": "advanced/customization.md"
- "Stream Parsing": "advanced/stream-parsing.md"
- "Custom Parsers": "advanced/custom-parser-types.md"
- "Contributing":
- "Contributing": "contributing/dev-setup.md"
- "Codebase Structure": "contributing/codebase-structure.md"
# - "Code of Conduct": "contributing/code-of-conduct.md"
- "Contributors": "contributing/contributors.md"
- "Security": "contributing/security.md"
- "Roadmap": "contributing/roadmap.md"
- "License": "contributing/license.md"
- "Changelog": "changelog.md"
# - "API Reference": "api.md"
theme:
name: material
palette:
scheme: slate
# Extensions
markdown_extensions:
- abbr
- admonition
- pymdownx.details
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:material.extensions.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
normalize_issue_symbols: true
repo_url_shorthand: true
user: shroominic
repo: funcchain
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
auto_append:
- includes/mkdocs.md
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra_css:
- css/termynal.css
- css/custom.css
extra_javascript:
- js/termynal.js
- js/custom.js