Skip to content

Commit

Permalink
Add note for out of date pages
Browse files Browse the repository at this point in the history
  • Loading branch information
databyjp committed Jan 24, 2025
1 parent f50a8e0 commit 7c1c5be
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions _includes/update-in-progress.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
:::caution 🚧 To be updated 🚧
This tutorial is currently being updated to reflect the latest features and improvements in Weaviate. We appreciate your patience and invite you to check back soon for the updated content.
:::
4 changes: 4 additions & 0 deletions developers/weaviate/tutorials/cross-references.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ image: og/docs/tutorials.jpg
# tags: ['tutorial']
---

import UpdateInProgressNote from '/_includes/update-in-progress.mdx';

<UpdateInProgressNote />

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
import FilteredTextBlock from '@site/src/components/Documentation/FilteredTextBlock';
Expand Down
4 changes: 4 additions & 0 deletions developers/weaviate/tutorials/import.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ image: og/docs/tutorials.jpg
# tags: ['import']
---

import UpdateInProgressNote from '/_includes/update-in-progress.mdx';

<UpdateInProgressNote />

import { DownloadButton } from '/src/theme/Buttons';

In this section, we will explore data import, including details of the batch import process. We will discuss points such as how vectors are imported, what a batch import is, how to manage errors, and some advice on optimization.
Expand Down
4 changes: 4 additions & 0 deletions developers/weaviate/tutorials/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ image: og/docs/tutorials.jpg
# tags: ['modules']
---

import UpdateInProgressNote from '/_includes/update-in-progress.mdx';

<UpdateInProgressNote />

In this guide, you will get an introduction to the role that modules play in Weaviate.

As their name suggest, Weaviate modules are options components to enhance Weaviate's functionality, such as to vectorize data or process results (e.g., question answering). The structure of the module name (`x2vec`) informs you of what the module does. E.g., `text2vec` generates text embeddings, `img2vec` image embeddings, etc.
Expand Down
4 changes: 4 additions & 0 deletions developers/weaviate/tutorials/query.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ image: og/docs/tutorials.jpg
# tags: ['basics']
---

import UpdateInProgressNote from '/_includes/update-in-progress.mdx';

<UpdateInProgressNote />

In this section, we will explore different queries that you can perform with Weaviate. Here, we will expand on the `nearText` queries that you may have seen in the [Quickstart tutorial](../quickstart/index.md) to show you different query types, filters and metrics that can be used.

By the end of this section, you will have performed vector and scalar searches separately as well as in combination to retrieve individual objects and aggregations.
Expand Down
4 changes: 4 additions & 0 deletions developers/weaviate/tutorials/vector-provision-options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ image: og/docs/tutorials.jpg
# tags: ['how-to', 'options for vectors']
---

import UpdateInProgressNote from '/_includes/update-in-progress.mdx';

<UpdateInProgressNote />

import ReactPlayer from 'react-player/lazy'

:::info This video covers options for adding a vector during import.
Expand Down
4 changes: 4 additions & 0 deletions developers/weaviate/tutorials/wikipedia.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ image: og/docs/tutorials.jpg # TODO
# tags: ['import']
---

import UpdateInProgressNote from '/_includes/update-in-progress.mdx';

<UpdateInProgressNote />

This tutorial will show you how to import a large dataset (25k articles from Wikipedia) that already includes vectors (embeddings generated by OpenAI). We will,
* download and unzip a CSV file that contains the Wikipedia articles
* create a Weaviate instance
Expand Down

0 comments on commit 7c1c5be

Please sign in to comment.