-
Notifications
You must be signed in to change notification settings - Fork 95
/
mkdocs.yml
84 lines (78 loc) · 2.01 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
site_name: AutoChain
site_description: "AutoChain: Build lightweight, extensible, and testable LLM Agents"
# TODO: set the proper docs website URL once the domain is defined
site_url: https://engineering.forethought.ai
repo_url: https://github.com/Forethought-Technologies/AutoChain
repo_name: AutoChain
theme:
name: material
icon:
repo: fontawesome/brands/github
palette:
- scheme: slate
primary: white
accent: purple
# Disable Dark mode toggle
# toggle:
# icon: material/lightbulb-outline
# name: Switch to light mode
# - scheme: default
# primary: white
# accent: purple
# toggle:
# icon: material/lightbulb
# name: Switch to dark mode
features:
- search.suggest
- search.highlight
- content.tabs.link
# TODO if AutoChain gets its own logo and icon, it could be put in these directories
# if the intention is to preserve Forethought's logo, remove this comment
logo: img/icon.png
favicon: img/icon.png
language: en
nav:
- index.md
- examples.md
- workflow-evaluation.md
- components_overview.md
- chain.md
- agent.md
- tool.md
- memory.md
plugins:
- git-authors
markdown_extensions:
- toc:
permalink: true
- markdown.extensions.codehilite:
guess_lang: false
- admonition
- codehilite
- extra
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ''
- pymdownx.tabbed:
alternate_style: true
- mdx_include
extra:
# TODO: do we want Google Analytics?
# analytics:
# provider: google
# property: YY-xxxxx
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/forethought_ai
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/forethought-ai/
- icon: fontawesome/solid/globe
link: https://forethought.ai/
extra_css:
- css/termynal.css
- css/custom.css
extra_javascript:
- js/termynal.js
- js/custom.js