forked from neuml/txtai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
102 lines (101 loc) · 3.24 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
#
# txtai Material for MkDocs configuration
#
site_name: txtai
site_description: "txtai: Build AI-powered semantic search applications"
repo_name: neuml/txtai
repo_url: https://github.com/neuml/txtai
copyright: © NeuML LLC, Apache-2.0 License
theme:
name: material
logo: images/logo.png
favicon: images/logo.png
custom_dir: docs/overrides
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: light blue
accent: light blue
toggle:
icon: material/toggle-switch
name: Switch to light mode
features:
- navigation.indexes
- navigation.instant
plugins:
- search
- mkdocstrings:
handlers:
python:
rendering:
show_root_full_path: false
show_root_heading: true
show_root_toc_entry: false
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
nav:
- Home: index.md
- Why txtai?: why.md
- Installation: install.md
- Examples: examples.md
- Embeddings:
- embeddings/index.md
- Configuration: embeddings/configuration.md
- Index Guide: embeddings/indexing.md
- Methods: embeddings/methods.md
- Query Guide: embeddings/query.md
- Pipeline:
- pipeline/index.md
- Audio:
- Transcription: pipeline/audio/transcription.md
- Data:
- Segmentation: pipeline/data/segmentation.md
- Tabular: pipeline/data/tabular.md
- Textractor: pipeline/data/textractor.md
- Image:
- Caption: pipeline/image/caption.md
- Image Hash: pipeline/image/imagehash.md
- Objects: pipeline/image/objects.md
- Text:
- Entity: pipeline/text/entity.md
- Extractor: pipeline/text/extractor.md
- Labels: pipeline/text/labels.md
- Sequences: pipeline/text/sequences.md
- Similarity: pipeline/text/similarity.md
- Summary: pipeline/text/summary.md
- Translation: pipeline/text/translation.md
- Train:
- HF ONNX: pipeline/train/hfonnx.md
- ML ONNX: pipeline/train/mlonnx.md
- Trainer: pipeline/train/trainer.md
- Workflow:
- workflow/index.md
- Schedule: workflow/schedule.md
- Tasks:
- workflow/task/index.md
- Console: workflow/task/console.md
- Export: workflow/task/export.md
- File: workflow/task/file.md
- Image: workflow/task/image.md
- Retrieve: workflow/task/retrieve.md
- Service: workflow/task/service.md
- Storage: workflow/task/storage.md
- Url: workflow/task/url.md
- Workflow: workflow/task/workflow.md
- API:
- api/index.md
- Cluster: api/cluster.md
- Configuration: api/configuration.md
- Methods: api/methods.md
- Cloud: cloud.md
- Further Reading: further.md