-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.toml
182 lines (151 loc) · 3.43 KB
/
config.toml
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
baseURL = 'https://haystack.deepset.ai/'
languageCode = 'en-us'
title = 'Haystack'
theme = "haystack"
paginate = 10
paginatePath = "/"
[taxonomies]
author = "authors"
tag = "tags"
[sitemap]
changefreq = 'monthly'
filename = 'sitemap.xml'
priority = 1
# Defaults used for opengraph metadata if none are specified for the page
[params]
title = "Haystack"
description = "Haystack is an open-source framework for building search systems that work intelligently over large document collections."
images = ["/images/haystack-ogimage.png"]
[permalinks]
pages = "/:filename"
authors = "/blog/authors/:slug"
tags = "/blog/tags/:slug"
[security]
[security.funcs]
getenv = ["^HUGO_", "GOOGLE_TAG_ANALYTICS", "DC_API_KEY", "DC_WORKSPACE_NAME", "DC_PIPELINE_NAME"]
[markup]
# Code blocks
[markup.highlight]
anchorLineNos = false
codeFences = true
guessSyntax = false
hl_Lines = ''
hl_inline = false
lineAnchors = ''
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
noHl = false
style = 'solarized-light'
tabWidth = 4
# Toc link levels (h2)
[markup.tableOfContents]
endLevel = 2
startLevel = 2
# Allow html in markdown
[markup.goldmark.renderer]
unsafe= true
# Main navigation
[menu]
[[menu.main]]
identifier = 'overview'
name = 'Overview'
url = '/'
weight = 1
[[menu.main]]
identifier = 'documentation'
name = 'Documentation'
url = 'https://docs.haystack.deepset.ai/docs'
weight = 2
params = { tag = "2.0" }
[[menu.main]]
identifier = 'learn'
name = 'Learn'
url = '/'
weight = 3
params = { tag = "New" }
[[menu.main]]
identifier = 'integrations'
name = 'Integrations'
url = '/integrations'
weight = 4
[[menu.main]]
identifier = 'blog'
name = 'Blog'
url = '/blog'
weight = 5
[[menu.main]]
identifier = 'community'
name = 'Community'
url = '/community'
weight = 6
[[menu.main]]
identifier = 'resources'
name = 'Resources'
url = '/'
weight = 7
[[menu.main]]
identifier = 'studio'
name = 'Studio'
url = 'https://landing.deepset.ai/deepset-studio-signup'
weight = 8
params = { tag = "New" }
# Overview children
[[menu.main]]
name = 'What is Haystack?'
url = '/overview/intro'
parent = 'overview'
weight = 1
[[menu.main]]
name = 'Get Started'
url = '/overview/quick-start'
parent = 'overview'
weight = 2
[[menu.main]]
name = 'Demos'
url = '/overview/demo'
parent = 'overview'
weight = 3
[[menu.main]]
name = 'deepset Careers'
url = "https://www.deepset.ai/jobs"
parent = 'overview'
weight = 4
[[menu.main]]
name = '📚 Tutorials & Walkthroughs'
url = '/tutorials'
parent = 'learn'
weight = 2
[[menu.main]]
name = '🧑🍳 Cookbook'
url = '/cookbook'
parent = 'learn'
weight = 3
[[menu.main]]
name = '🧪 Experiments'
url = 'https://github.com/deepset-ai/haystack-experimental'
parent = 'learn'
weight = 4
[[menu.main]]
name = '🚀 DeepLearning.AI'
url = 'https://www.deeplearning.ai/short-courses/building-ai-applications-with-haystack/'
parent = 'learn'
weight = 1
params = { tag = "Enroll" }
# Resources children
[[menu.main]]
name = 'Release Notes'
url = '/release-notes'
parent = 'resources'
weight = 1
[[menu.main]]
name = 'deepset Blog'
url = 'https://www.deepset.ai/blog'
parent = 'resources'
weight = 2
[[menu.main]]
name = 'NLP Resources'
url = '/nlp-resources'
parent = 'resources'
weight = 4