<?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 Database</title><link>https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-0/</link><description>Recent content in Day 0: Setup and First Steps on Qdrant - Vector Database</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-2138--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-2138--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-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-0/qdrant-cloud/</guid><description>&lt;div class="date">
 &lt;img class="date-icon" src="https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/icons/outline/date-blue.svg" alt="Calendar" /> Day 0 
&lt;/div>

&lt;h1 id="qdrant-setup">Qdrant Setup&lt;/h1>
&lt;div class="video">
&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>
&lt;/iframe>
&lt;/div>
&lt;br/>
&lt;p>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>
&lt;h2 id="create-your-cluster">Create your cluster&lt;/h2>
&lt;ol>
&lt;li>Sign up at &lt;a href="https://cloud.qdrant.io/signup" target="_blank" rel="noopener nofollow">cloud.qdrant.io&lt;/a> with email, Google, or GitHub.&lt;/li>
&lt;li>Open &lt;strong>Clusters&lt;/strong> → &lt;strong>Create a Free Cluster&lt;/strong>. The Free Tier is enough for this course.&lt;/li>
&lt;/ol>
&lt;p>&lt;img src="https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/docs/gettingstarted/gui-quickstart/create-cluster.png" alt="Create cluster">&lt;/p>
&lt;ol start="3">
&lt;li>Pick a region close to your users or app.&lt;/li>
&lt;li>When the cluster is ready, copy the API key and store it securely. You can make new keys later from &lt;strong>API Keys&lt;/strong> on the cluster page.&lt;/li>
&lt;/ol>
&lt;p>&lt;img src="https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/docs/gettingstarted/gui-quickstart/api-key.png" alt="Get API key">&lt;/p></description></item><item><title>Implementing a Basic Vector Search</title><link>https://deploy-preview-2138--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-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-0/building-simple-vector-search/</guid><description>&lt;div class="date">
 &lt;img class="date-icon" src="https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/icons/outline/date-blue.svg" alt="Calendar" /> Day 0 
&lt;/div>

&lt;h1 id="implementing-a-basic-vector-search">Implementing a Basic Vector Search&lt;/h1>
&lt;div class="video">
&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>
&lt;/iframe>
&lt;/div>
&lt;p>Follow along as we build your first collection, insert vectors, and run similarity searches. This guided tutorial walks you through each step.&lt;/p>
&lt;h2 id="step-1-install-the-qdrant-client">Step 1: Install the Qdrant Client&lt;/h2>
&lt;p>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>
&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-python" data-lang="python">&lt;span class="line">&lt;span class="cl">&lt;span class="err">!&lt;/span>&lt;span class="n">pip&lt;/span> &lt;span class="n">install&lt;/span> &lt;span class="n">qdrant&lt;/span>&lt;span class="o">-&lt;/span>&lt;span class="n">client&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;h2 id="step-2-import-required-libraries">Step 2: Import Required Libraries&lt;/h2>
&lt;p>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>Distance&lt;/code>, &lt;code>VectorParams&lt;/code>, and &lt;code>PointStruct&lt;/code>.&lt;/p></description></item><item><title>Project: Building Your First Vector Search System</title><link>https://deploy-preview-2138--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-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-0/pitstop-project/</guid><description>&lt;div class="date">
 &lt;img class="date-icon" src="https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/icons/outline/date-blue.svg" alt="Calendar" /> Day 0 
&lt;/div>

&lt;h1 id="project-building-your-first-vector-search-system">Project: Building Your First Vector Search System&lt;/h1>
&lt;p>Time to apply what you&amp;rsquo;ve learned. You&amp;rsquo;ll create a complete, working vector search system from scratch.&lt;/p>
&lt;h2 id="your-mission">Your Mission&lt;/h2>
&lt;p>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>
&lt;p>&lt;strong>Estimated Time:&lt;/strong> 30 minutes&lt;/p>
&lt;h2 id="what-youll-build">What You&amp;rsquo;ll Build&lt;/h2>
&lt;p>A working search system with:&lt;/p>
&lt;ul>
&lt;li>One collection with 4-dimensional vectors and Cosine distance&lt;/li>
&lt;li>5–10 points with hand-crafted vectors and meaningful payloads&lt;/li>
&lt;li>Basic similarity search to find nearest neighbors&lt;/li>
&lt;li>Filtered search combining similarity with payload conditions&lt;/li>
&lt;/ul>
&lt;h2 id="setup">Setup&lt;/h2>
&lt;h3 id="prerequisites">Prerequisites&lt;/h3>
&lt;ul>
&lt;li>Qdrant Cloud cluster (URL + API key)&lt;/li>
&lt;li>Python 3.9+ (or Colab)&lt;/li>
&lt;li>Required packages: &lt;code>qdrant-client&lt;/code>.&lt;/li>
&lt;/ul>
&lt;h3 id="models">Models&lt;/h3>
&lt;ul>
&lt;li>None. We will create vectors by hand.&lt;/li>
&lt;/ul>
&lt;h3 id="dataset">Dataset&lt;/h3>
&lt;ul>
&lt;li>None. We will create our own data points.&lt;/li>
&lt;/ul>
&lt;p>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></description></item></channel></rss>