-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
82 lines (76 loc) · 2.16 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
site_name: "Encord Agents"
repo_url: https://github.com/encord-team/encord-agents
watch:
- encord_agents
theme:
logo: assets/logo_single.png
favicon: assets/favicon.png
name: "material"
features:
- content.code.copy
- navigation.footer
- navigation.expand
nav:
- "Home": index.md
- "Installation": installation.md
- "Authentication": authentication.md
- "Getting started": getting_started.md
- "Dependencies": dependencies.md
- "Editor Agents":
- "Intro": editor_agents/index.md
- "GCP Cloud Functions": editor_agents/gcp.md
- "FastAPI": editor_agents/fastapi.md
- "Examples": editor_agents/examples/index.md
- "Task Agents":
- "Intro": task_agents/index.md
- "Execution": task_agents/runner.md
- "Examples": task_agents/examples/index.md
- "Reference":
- "Editor agents": reference/editor_agents.md
- "Task agents": reference/task_agents.md
- "Core": reference/core.md
extra:
homepage: https://encord.com
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list
- md_in_html
- admonition
- pymdownx.details
- pymdownx.superfences
- toc:
permalink: true
plugins:
- search
- codeinclude
- git-revision-date-localized: # Shows last update date
enable_creation_date: true
- mkdocstrings:
handlers:
python:
options:
allow_inspection: true
show_if_no_docstring: true
heading_level: 3
show_root_full_path: true
show_root_members_full_path: true
show_symbol_type_heading: true
show_submodules: true
separate_signature: true
show_signature_annotations: true
line_length: 60
docstring_section_style: list
show_docstring_yields: true
show_docstring_examples: true
- glightbox