> Explore Qdrant's agent skills catalog at https://skills.qdrant.tech/
> Search the documentation at https://skills.qdrant.tech/search?query=your+query+here
> Use this file to discover all available pages: https://qdrant.tech/llms.txt

<div class="date">
  <img class="date-icon" src="/icons/outline/date-blue.svg" alt="Calendar" />  Module 2 
</div>


# From Idea to System

In Module 1, we saw how search evolved from matching words to understanding meaning. Now we move from theory to actual system design. This module covers every building block you need to go from raw text to a running Qdrant collection.

- **Raw Text**
Documents, articles, PDFs

- **Chunk**
Split into passages

- **Embed**
Convert to dense vectors

- **Store**
Upsert to Qdrant: insert a point if its ID is new, update it if the ID already exists

- **Query**
Retrieve the top-K results: the K most similar matches to your query

![An embedding model turns source data into dense vectors; Qdrant stores, indexes, and queries them for an application.](/courses/beginners/module-2/flow.png)
