Skip to content

Commit 75c7ebe

Browse files
authored
Introduce docset.yml (#59)
1 parent fbc97be commit 75c7ebe

File tree

28 files changed

+263
-388
lines changed

28 files changed

+263
-388
lines changed

.editorconfig

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,12 @@ csharp_style_var_for_built_in_types = true:error
136136
csharp_style_var_when_type_is_apparent = true:error
137137
csharp_style_var_elsewhere = true:error
138138

139-
csharp_style_expression_bodied_methods = true:warning
140-
csharp_style_expression_bodied_constructors = true:warning
141-
csharp_style_expression_bodied_operators = true:warning
142-
csharp_style_expression_bodied_properties = true:warning
143-
csharp_style_expression_bodied_indexers = true:warning
144-
csharp_style_expression_bodied_accessors = true:warning
139+
csharp_style_expression_bodied_methods = true:suggestion
140+
csharp_style_expression_bodied_constructors = true:suggestion
141+
csharp_style_expression_bodied_operators = true:suggestion
142+
csharp_style_expression_bodied_properties = true:suggestion
143+
csharp_style_expression_bodied_indexers = true:suggestion
144+
csharp_style_expression_bodied_accessors = true:suggestion
145145

146146
# Suggest more modern language features when available
147147
csharp_style_pattern_matching_over_is_with_cast_check = true:error

docs/source/conf.py

Lines changed: 0 additions & 62 deletions
This file was deleted.

docs/source/docset.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
project: 'doc-builder'
2+
exclude:
3+
- '_*.md'
4+
toc:
5+
- file: index.md
6+
- file: config.md
7+
- file: search.md
8+
children:
9+
- file: search-part2.md
10+
- folder: search
11+
- folder: my-folder1
12+
- folder: my-folder2
13+
children:
14+
- file: subpath/file.md
15+
- file: file.md
16+
- folder: sub/folder

docs/source/elastic/index.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,3 @@ Here's what we have so far:
1010
* [Search Labs Tutorial](search-labs/index.md) — A partial port of the Search Labs Tutorials content currently hosted [here](https://www.elastic.co/search-labs/tutorials).
1111
* [Automated Settings Reference](reference/index.md) — An example of an automatically automated setting
1212
* [Observability overview](observability/index.md) — Nothing special, just a bunch of images and text.
13-
14-
```{toctree}
15-
:hidden:
16-
17-
Tutorial: Semantic search with the inference API <semantic-search/index.md>
18-
Search Labs <search-labs/index.md>
19-
Automated Settings <reference/index.md>
20-
Observability overview <observability/index.md>
21-
```

docs/source/elastic/reference/index.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,4 @@ Simply supply a yaml spec and corresponding template file and content will be au
88
This section includes one example yaml file and two auto-generated outputs based on that file:
99

1010
* [example `yaml` file](source.md)
11-
* [generated output](generated.md)
12-
13-
```{toctree}
14-
:hidden:
15-
16-
source.md
17-
generated.md
18-
```
11+
* [generated output](generated.md)

docs/source/elastic/search-labs/chat.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@
22
title: Chatbot Tutorial
33
---
44

5-
```{toctree}
6-
:hidden:
7-
8-
chat/req.md
9-
chat/rag.md
10-
```
11-
125
In this tutorial you are going to build a large language model (LLM) chatbot that uses a pattern known as [Retrieval-Augmented Generation (RAG)](https://www.elastic.co/what-is/retrieval-augmented-generation).
136

147
<!-- ![Chatbot App Demo](/assets/images/guides/chatbot-app-demo.gif) -->

docs/source/elastic/search-labs/index.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,6 @@
22
title: Search Labs Tutorials
33
---
44

5-
```{toctree}
6-
:hidden:
7-
8-
install.md
9-
search.md
10-
chat.md
11-
```
12-
13-
145
## Start here
156

167
````{grid} 3

docs/source/elastic/search-labs/install.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@
22
title: "Install Elasticsearch"
33
---
44

5-
```{toctree}
6-
:hidden:
7-
8-
install/cloud.md
9-
install/docker.md
10-
```
11-
125
In this section you will learn about some of the options you have for running Elasticsearch. Most of the tutorials and content on this site will require you to first follow the instructions below for your chosen method of installation.
136

147
## How to run Elasticsearch

docs/source/elastic/search-labs/search.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@
22
title: "Search Tutorial"
33
---
44

5-
```{toctree}
6-
:hidden:
7-
8-
search/req.md
9-
search/setup.md
10-
```
11-
125
Welcome!
136

147
This hands-on tutorial will teach you how to build a complete search solution using [Elasticsearch](https://www.elastic.co/). In this tutorial you will learn:

docs/source/elastic/semantic-search/index.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,3 @@ Amazon Bedrock examples use the `amazon.titan-embed-text-v1` model from the [Ama
4242
```{tip}
4343
Not seeing the tutorial? Select a service above to get started.
4444
```
45-
46-
```{toctree}
47-
:hidden:
48-
49-
Amazon Bedrock <amazon-bedrock.md>
50-
Azure AI Studio <azure-ai-studio.md>
51-
Azure OpenAI <azure-openai.md>
52-
Cohere <cohere.md>
53-
ELSER <elser.md>
54-
```

0 commit comments

Comments
 (0)