-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmkdocs.yml
60 lines (54 loc) · 1.4 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
site_name: TapeAgents Documentation
site_description: TapeAgents is a framework that facilitates all stages of the LLM Agent development lifecycle
site_url: https://servicenow.github.io/TapeAgents/
repo_url: https://github.com/ServiceNow/TapeAgents
repo_name: ServiceNow/TapeAgents
copyright: Copyright 2024 ServiceNow, Inc.
theme:
name: "material"
icon:
repo: fontawesome/brands/github
features:
- navigation.footer
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.tabs
# - navigation.sections
- navigation.path
- navigation.top
- content.code.copy
extra:
generator: false
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
default_handler: python
enable_inventory: true
handlers:
python:
options:
show_labels: true
summary: true
docstring_section_style: list
show_symbol_type_heading: true
show_symbol_type_toc: true
show_root_toc_entry: true
show_category_heading: false
show_root_full_path: true
- git-revision-date-localized:
enable_creation_date: true
extra_css:
- css/mkdocstrings.css
nav:
- Home: index.md
- Quickstart: quickstart.md
# defer to gen-files + literate-nav
- Reference: reference/
# rest of the navigation...