<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Day 0: Setup and First Steps on Qdrant - Vector Search Engine</title><link>https://deploy-preview-2342--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-0/</link><description>Recent content in Day 0: Setup and First Steps on Qdrant - Vector Search Engine</description><generator>Hugo</generator><language>en-us</language><managingEditor>info@qdrant.tech (Andrey Vasnetsov)</managingEditor><webMaster>info@qdrant.tech (Andrey Vasnetsov)</webMaster><atom:link href="https://deploy-preview-2342--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-0/index.xml" rel="self" type="application/rss+xml"/><item><title>Qdrant Setup</title><link>https://deploy-preview-2342--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-0/qdrant-cloud/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>info@qdrant.tech (Andrey Vasnetsov)</author><guid>https://deploy-preview-2342--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-0/qdrant-cloud/</guid><description>&lt;div class="date"&gt;
 &lt;img class="date-icon" src="https://deploy-preview-2342--condescending-goldwasser-91acf0.netlify.app/icons/outline/date-blue.svg" alt="Calendar" /&gt; Day 0 
&lt;/div&gt;

&lt;h1 id="qdrant-setup"&gt;Qdrant Setup&lt;/h1&gt;
&lt;div class="video"&gt;
&lt;iframe 
 src="https://www.youtube.com/embed/9JBlgNBQoOY?si=7t3LAvMsUUtlUMN7&amp;rel=0"
 frameborder="0"
 allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
 referrerpolicy="strict-origin-when-cross-origin"
 allowfullscreen&gt;
&lt;/iframe&gt;
&lt;/div&gt;
&lt;br/&gt;
&lt;p&gt;Spin up production-grade vector search in minutes. Qdrant Cloud gives you a managed endpoint with TLS, automatic backups, high-availability options, and a clean API.&lt;/p&gt;
&lt;h2 id="create-your-cluster"&gt;Create your cluster&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Sign up at &lt;a href="https://cloud.qdrant.io/signup" target="_blank" rel="noopener nofollow"&gt;cloud.qdrant.io&lt;/a&gt; with email, Google, or GitHub.&lt;/li&gt;
&lt;li&gt;Open &lt;strong&gt;Clusters&lt;/strong&gt; → &lt;strong&gt;Create a Free Cluster&lt;/strong&gt;. The Free Tier is enough for this course.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src="https://deploy-preview-2342--condescending-goldwasser-91acf0.netlify.app/docs/gettingstarted/gui-quickstart/create-cluster.png" alt="Create cluster"&gt;&lt;/p&gt;
&lt;ol start="3"&gt;
&lt;li&gt;Pick a region close to your users or app.&lt;/li&gt;
&lt;li&gt;When the cluster is ready, copy the API key and store it securely. You can make new keys later from &lt;strong&gt;API Keys&lt;/strong&gt; on the cluster page.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src="https://deploy-preview-2342--condescending-goldwasser-91acf0.netlify.app/docs/gettingstarted/gui-quickstart/api-key.png" alt="Get API key"&gt;&lt;/p&gt;</description></item><item><title>Implementing a Basic Vector Search</title><link>https://deploy-preview-2342--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-0/building-simple-vector-search/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>info@qdrant.tech (Andrey Vasnetsov)</author><guid>https://deploy-preview-2342--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-0/building-simple-vector-search/</guid><description>&lt;div class="date"&gt;
 &lt;img class="date-icon" src="https://deploy-preview-2342--condescending-goldwasser-91acf0.netlify.app/icons/outline/date-blue.svg" alt="Calendar" /&gt; Day 0 
&lt;/div&gt;

&lt;h1 id="implementing-a-basic-vector-search"&gt;Implementing a Basic Vector Search&lt;/h1&gt;
&lt;div class="video"&gt;
&lt;iframe 
 src="https://www.youtube.com/embed/_83L9ZIoOjM?si=ZTpn6fMXSjc_7JgL"
 frameborder="0"
 allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
 referrerpolicy="strict-origin-when-cross-origin"
 allowfullscreen&gt;
&lt;/iframe&gt;
&lt;/div&gt;
&lt;p&gt;Follow along as we build your first collection, insert vectors, and run similarity searches. This guided tutorial walks you through each step.&lt;/p&gt;
&lt;h2 id="step-1-install-the-qdrant-client"&gt;Step 1: Install the Qdrant Client&lt;/h2&gt;
&lt;p&gt;To interact with Qdrant, we need the Python client. This enables us to communicate with the Qdrant service, manage collections, and perform vector searches.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-python" data-lang="python"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="err"&gt;!&lt;/span&gt;&lt;span class="n"&gt;pip&lt;/span&gt; &lt;span class="n"&gt;install&lt;/span&gt; &lt;span class="n"&gt;qdrant&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;client&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="step-2-import-required-libraries"&gt;Step 2: Import Required Libraries&lt;/h2&gt;
&lt;p&gt;Import the necessary modules from the qdrant-client package. The QdrantClient class establishes connection to Qdrant, while the models module provides configurations for &lt;code&gt;Distance&lt;/code&gt;, &lt;code&gt;VectorParams&lt;/code&gt;, and &lt;code&gt;PointStruct&lt;/code&gt;.&lt;/p&gt;</description></item><item><title>Project: Building Your First Vector Search System</title><link>https://deploy-preview-2342--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-0/pitstop-project/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>info@qdrant.tech (Andrey Vasnetsov)</author><guid>https://deploy-preview-2342--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-0/pitstop-project/</guid><description>&lt;div class="date"&gt;
 &lt;img class="date-icon" src="https://deploy-preview-2342--condescending-goldwasser-91acf0.netlify.app/icons/outline/date-blue.svg" alt="Calendar" /&gt; Day 0 
&lt;/div&gt;

&lt;h1 id="project-building-your-first-vector-search-system"&gt;Project: Building Your First Vector Search System&lt;/h1&gt;
&lt;p&gt;Time to apply what you&amp;rsquo;ve learned. You&amp;rsquo;ll create a complete, working vector search system from scratch.&lt;/p&gt;
&lt;h2 id="your-mission"&gt;Your Mission&lt;/h2&gt;
&lt;p&gt;Build a functional vector search system that demonstrates the core concepts: collections, points, similarity search, and filtering. You&amp;rsquo;ll design simple 4-dimensional vectors that represent different concepts or items.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Estimated Time:&lt;/strong&gt; 30 minutes&lt;/p&gt;
&lt;h2 id="what-youll-build"&gt;What You&amp;rsquo;ll Build&lt;/h2&gt;
&lt;p&gt;A working search system with:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;One collection with 4-dimensional vectors and Cosine distance&lt;/li&gt;
&lt;li&gt;5–10 points with hand-crafted vectors and meaningful payloads&lt;/li&gt;
&lt;li&gt;Basic similarity search to find nearest neighbors&lt;/li&gt;
&lt;li&gt;Filtered search combining similarity with payload conditions&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="setup"&gt;Setup&lt;/h2&gt;
&lt;h3 id="prerequisites"&gt;Prerequisites&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Qdrant Cloud cluster (URL + API key)&lt;/li&gt;
&lt;li&gt;Python 3.9+ (or Colab)&lt;/li&gt;
&lt;li&gt;Required packages: &lt;code&gt;qdrant-client&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="models"&gt;Models&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;None. We will create vectors by hand.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="dataset"&gt;Dataset&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;None. We will create our own data points.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Before creating data, decide what each of the four dimensions in your vectors will represent. This is the creative part of vector search!&lt;/p&gt;</description></item></channel></rss>