-
Notifications
You must be signed in to change notification settings - Fork 6
/
_quarto.yml
99 lines (92 loc) · 2.58 KB
/
_quarto.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
# Cloned from https://github.com/TileDB-Inc/tiledb-quarto-template
project:
type: website
output-dir: docs
render:
# The first item will be the landing page
- "documentation/index.md"
- "documentation"
- "documentation/reference"
- "examples/README.md"
- "examples"
format:
html:
# https://quarto.org/docs/output-formats/page-layout.html#grid-customization
grid:
sidebar-width: 350px
body-width: 1000px
margin-width: 350px
gutter-width: 1rem
toc: true
theme:
light: [flatly, "quarto-materials/tiledb.scss"]
mainfont: Helvetica
fontsize: 1rem
linkcolor: "#4d9fff"
code-copy: true
code-overflow: wrap
css: "quarto-materials/tiledb.css"
quartodoc:
title: "Python"
package: tiledb.vector_search
dir: "documentation/reference"
sections:
- title: "Vector API"
desc: ""
contents:
- open
- ingestion
- index.Index
- subtitle: "Algorithms"
desc: ""
contents:
- flat_index
- ivf_flat_index
- vamana_index
- ivf_pq_index
- title: "Object API"
desc: ""
contents:
- object_api.create
- object_api.ObjectIndex
- embeddings.ObjectEmbedding
- object_readers.ObjectReader
- object_readers.ObjectPartition
website:
favicon: "documentation/assets/tiledb.ico"
site-url: https://tiledb-inc.github.io/TileDB-Vector-Search/
repo-url: https://github.com/TileDB-Inc/TileDB-Vector-Search
# You may want one or both of these, or neither:
repo-actions: [edit, issue]
page-navigation: true
navbar:
background: light
logo: "quarto-materials/tiledb-logo.png"
collapse-below: lg
left:
- text: "Home page"
href: "https://tiledb.com"
- text: "Login"
href: "https://cloud.tiledb.com/auth/login"
- text: "Contact us"
href: "https://tiledb.com/contact"
- text: "Repo"
href: "https://github.com/TileDB-Inc/TileDB-Vector-Search"
sidebar:
- style: "floating"
collapse-level: 2
align: left
contents:
- href: "documentation/index.md"
- href: "documentation/Building.md"
- href: "documentation/Benchmarks.md"
- href: "documentation/storage-format-spec.md"
# - section: "Examples"
# contents:
# # - href: "examples/overview.md"
# - section: "Ingestion"
# contents:
# # - href: "documentation/ingestion/overview.md"
- section: "API Reference"
contents:
- href: "documentation/reference/index.qmd"