-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmkdocs.yml
113 lines (104 loc) · 2.95 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
site_name: Rigging
site_description: A lightweight LLM interaction framework
site_author: Dreadnode
site_url: https://rigging.dreadnode.io
repo_url: https://github.com/dreadnode/rigging
nav:
- Home:
- index.md
- Topics:
- Workflow: topics/workflow.md
- Models: topics/models.md
- Generators: topics/generators.md
- Chats and Messages: topics/chats-and-messages.md
- Prompt Functions: topics/prompt-functions.md
- Completions: topics/completions.md
- Callbacks and Mapping: topics/callbacks-and-mapping.md
- Iterating and Batching: topics/iterating-and-batching.md
- Tools: topics/tools.md
- Tracing: topics/tracing.md
- Serialization: topics/serialization.md
- Logging: topics/logging.md
- Migrations: topics/migrations.md
- Principles: topics/principles.md
- API:
- rigging.chat: api/chat.md
- rigging.completion: api/completion.md
- rigging.generator: api/generator.md
- rigging.model: api/model.md
- rigging.message: api/message.md
- rigging.prompt: api/prompt.md
- rigging.tool: api/tool.md
- rigging.data: api/data.md
- rigging.watchers: api/watchers.md
- rigging.parsing: api/parsing.md
- rigging.interact: api/interact.md
- rigging.logging: api/logging.md
- rigging.error: api/error.md
- rigging.util: api/util.md
theme:
logo: assets/logo_black.png
favicon: assets/logo_white.png
name: material
icon:
repo: fontawesome/brands/github
palette:
scheme: slate
primary: custom
features:
- content.code.copy
- content.code.annotate
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.expand
- navigation.path
- navigation.top
- navigation.tabs
- navigation.tabs.sticky
plugins:
- search
- section-index
- social
- mkdocstrings:
handlers:
python:
paths: [rigging]
options:
docstring_options:
ignore_init_summary: true
docstring_section_style: list
heading_level: 3
merge_init_into_class: true
show_signature_annotations: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
watch:
- rigging/
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: "#"
extra_css:
- stylesheets/extra.css
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
extra:
homepage: https://dreadnode.io
social:
- icon: fontawesome/brands/github
link: https://github.com/dreadnode
- icon: fontawesome/brands/twitter
link: https://twitter.com/dreadnode
- icon: fontawesome/brands/python
link: https://pypi.org/project/rigging/