-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
145 lines (138 loc) · 3.86 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
site_name: raggy
site_description: "A R.A.G toolkit"
site_url: https://zzstoatzz.github.io/raggy/
docs_dir: docs
repo_url: https://github.com/zzstoatzz/raggy
nav:
- Home: index.md
- Getting Started:
- Installation: welcome/installation.md
- Tutorial: welcome/tutorial.md
- Examples: examples/index.md
- Contributing: contributing.md
- Ingest Strategy: ingest_strategy.md
- API Reference:
- Overview: api_reference/index.md
- Loaders:
- Base: api_reference/loaders/base.md
- GitHub: api_reference/loaders/github.md
- PDF: api_reference/loaders/pdf.md
- Web: api_reference/loaders/web.md
- Vectorstores:
- Base: api_reference/vectorstores/base.md
- Chroma: api_reference/vectorstores/chroma.md
- TurboPuffer: api_reference/vectorstores/tpuf.md
- Settings: api_reference/settings.md
- Utilities:
- Async: api_reference/utilities/asyncutils.md
- Collections: api_reference/utilities/collections.md
- Embeddings: api_reference/utilities/embeddings.md
- Filesystem: api_reference/utilities/filesystem.md
- IDs: api_reference/utilities/ids.md
- Logging: api_reference/utilities/logging.md
- Text: api_reference/utilities/text.md
theme:
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.indexes
- toc.follow
- content.code.copy
- content.code.select
- content.code.annotate
- announce.dismiss
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: green
accent: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: "#2E7D32"
accent: "#00897B"
toggle:
icon: material/brightness-4
name: Switch to light mode
name: material
logo: assets/logos/raggy.png
favicon: assets/logos/raggy.png
custom_dir: docs/overrides
font:
text: Roboto
code: Roboto Mono
plugins:
- search
- markdownextradata
- social:
cards_layout_options:
font_family: Inter
background_color: "#181544"
- awesome-pages
- autolinks
- mkdocstrings:
handlers:
python:
paths: [src]
options:
show_source: false
show_root_heading: false
show_root_toc_entry: false
show_object_full_path: false
show_category_heading: false
show_bases: false
show_submodules: false
show_symbol_type_heading: true
show_symbol_type_toc: true
show_if_no_docstring: false
show_signature: false
heading_level: 2
filters: ["!^_"]
import:
- https://docs.python-requests.org/en/master/objects.inv
watch:
- src
- docs
- mkdocs.yml
hooks:
- docs/hooks.py
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- tables
- pymdownx.emoji:
- toc:
permalink: true
title: On this page
extra:
analytics:
provider: google
property: !ENV GOOGLE_ANALYTICS_KEY
social:
- icon: fontawesome/brands/github
link: https://github.com/zzstoatzz/raggy
- icon: fontawesome/brands/twitter
link: https://twitter.com/Nathan_Nowack
version:
provider: mike
generator: false
homepage: https://zzstoatzz.github.io/raggy
announcement:
text: "New in 0.2.0: Simplified vectorstore operations"
link: https://github.com/zzstoatzz/raggy/releases/tag/v0.2.0