From 9b3162cdb0a8065676fe6408c11567d386134c56 Mon Sep 17 00:00:00 2001 From: David Myriel Date: Wed, 10 Jul 2024 08:59:16 -0700 Subject: [PATCH] update interactive tutorial for language and links (#193) * update interactive tutorial for language and links * fix two words * Update src/components/InteractiveTutorial/MdxPages/Index.mdx Co-authored-by: Anush --------- Co-authored-by: Andrey Vasnetsov Co-authored-by: Anush --- .../InteractiveTutorial/MdxPages/Index.mdx | 28 +++++++------------ 1 file changed, 10 insertions(+), 18 deletions(-) diff --git a/src/components/InteractiveTutorial/MdxPages/Index.mdx b/src/components/InteractiveTutorial/MdxPages/Index.mdx index 48d1b036..9ed1a9f6 100644 --- a/src/components/InteractiveTutorial/MdxPages/Index.mdx +++ b/src/components/InteractiveTutorial/MdxPages/Index.mdx @@ -1,26 +1,18 @@ # Interactive Tutorial -## How to run Qdrant? +The quickest way to see how Qdrant works is to access its API from this live instance. -If you are reading this, you probably already have Qdrant running! -All the examples in this tutorial do not require any additional setup from your side. +You will use the [Qdrant REST API](https://api.qdrant.tech) to interact with sample data. Here you can perform various operations such as inserting vectors, searching, and applying filters. -This tutorial will demonstrate principles of Qdrant API, which you would be able to reproduce in -Qdrant UI or in Qdrant client for your [favorite programming language](https://qdrant.tech/documentation/interfaces/). +**Note:** All created collections and vectors will remain in the cluster until you delete them. You can always return to the tutorial and edit code blocks to get different results. -## What is an interactive tutorial? +|Tutorial|What you will learn| +|-|-| +|[Quickstart](#/tutorial/quickstart)|Create a collection, upsert vectors & run a search.| +|[Payload Filtering](#/tutorial/filtering-clauses)|Refine search results based on payload conditions.| -In this tutorial, we will guide you through Qdrant API step by step. -You will explore the main features and learn core concepts of Qdrant on an interactive examples. +## Next steps: -You will be able to run the code blocks in this tutorial and see the results in real-time. -You also can edit the code blocks and see how the results change. - - -
- **Table of Contents** - - [Quickstart](#/tutorial/quickstart) - - [Filtering Clauses](#/tutorial/filtering-clauses) -
-
+Once you are ready to leave this sandbox tutorial, you can try the complete [REST API](https://api.qdrant.tech) from the **Console**. All your resources will be persisted. +You can use one of our [language-specific Clients](https://qdrant.tech/documentation/interfaces/) to build your applications.