-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
195 lines (155 loc) · 4.35 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
site_name: Sibila
site_url: https://jndiogo.github.io/sibila/
repo_url: https://github.com/jndiogo/sibila
nav:
- Start:
- index.md
- what.md
- Getting Started:
- installing.md
- first_run.md
- Creating Models:
- Remote models:
- models/remote_model.md
- models/anthropic.md
- models/fireworks.md
- models/groq.md
- models/mistral.md
- models/openai.md
- models/together.md
- Local models:
- models/local_model.md
- models/find_local_models.md
- models/setup_format.md
- Models factory:
- models/models_factory.md
- models/models_json.md
- models/formats_json.md
- models/sibila_cli.md
- models/vision.md
- Extracting Structured Data:
- extract/simple_types.md
- extract/enums.md
- extract/pydantic.md
- extract/dataclass.md
- extract/free_json.md
- extract/free_text.md
- thread.md
- async.md
- tools.md
- tips.md
- Examples:
- examples/index.md
- examples/hello_model.md
- examples/from_text_to_object.md
- "Extract Pydantic": examples/extract.md
- examples/extract_dataclass.md
- examples/tag.md
- examples/quick_meeting.md
- examples/tough_meeting.md
- examples/compare.md
- examples/interact.md
- examples/receipt.md
- examples/simple_tools.md
- examples/async.md
- "Sibila CLI": examples/cli.md
- API Reference:
- api-reference/local_model.md
- api-reference/remote_model.md
- api-reference/models.md
- api-reference/generation.md
- api-reference/thread.md
- api-reference/multigen.md
- api-reference/tools.md
- api-reference/tokenizer.md
- api-reference/changelog.md
theme:
name: material
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.indexes
- toc.follow
- content.code.copy
# - content.code.select
palette:
# Palette toggle for light mode
- scheme: default
primary: pink
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: pink
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
extra_css:
- stylesheets/extra.css
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [sibila]
options:
# general: https://mkdocstrings.github.io/python/usage/configuration/general/
show_bases: false
show_source: true
preload_modules:
- typing
# headings: https://mkdocstrings.github.io/python/usage/
heading_level: 3
show_root_heading: true
show_root_toc_entry: true
show_root_full_path: false
show_root_members_full_path: false
# members: https://mkdocstrings.github.io/python/usage/configuration/members/
inherited_members: true
members_order: source
group_by_category: false
# docstrings: https://mkdocstrings.github.io/python/usage/configuration/docstrings/
docstring_style: "google"
docstring_section_style: table
merge_init_into_class: true
show_docstring_attributes: false
show_if_no_docstring: true
# signature: https://mkdocstrings.github.io/python/usage/configuration/signatures/
line_length: 60
separate_signature: True
show_signature: true
show_signature_annotations: false
signature_crossrefs: true
import:
- https://docs.python.org/3/objects.inv
#- mkdocs-jupyter:
markdown_extensions:
- attr_list
- md_in_html
- tables
- admonition
- pymdownx.details
- toc:
permalink: "#"
title: Contents
- pymdownx.snippets:
check_paths: true
base_path: ["examples", "."]
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
watch:
- sibila
- docs
- examples