From 8b3437ecaec72ff394dca3a9aab0a35ab3d70653 Mon Sep 17 00:00:00 2001 From: Adam Hendel Date: Sat, 2 Mar 2024 15:35:11 -0600 Subject: [PATCH] Add missing mkdocs.yml (#68) --- mkdocs.yml | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 mkdocs.yml diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..d828aba --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,44 @@ +site_name: Vectorize +theme: + name: material + palette: + - scheme: default + primary: teal + toggle: + icon: material/weather-night + name: dark mode + - scheme: slate + primary: teal + toggle: + icon: material/weather-sunny + name: light mode +nav: + - Vectorize: 'index.md' + - API: + - Overview: 'api/index.md' + - 'api/search.md' + - 'api/rag.md' + - 'api/utilities.md' + - Examples: + - Search: + - 'examples/sentence_transformers.md' + - 'examples/openai_embeddings.md' +markdown_extensions: +- toc: + permalink: true +- markdown.extensions.codehilite: + guess_lang: false +- codehilite: +- admonition +- extra +- pymdownx.snippets: + check_paths: true +- pymdownx.highlight: + anchor_linenums: true + line_spans: __span + pygments_lang_class: true +- pymdownx.inlinehilite +- pymdownx.superfences +plugins: + - search + - mkdocstrings