> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aptlystar.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Data Stores of Organization

## 🗂️ What is a Data Store?

A **Datastore** is a centralized collection of various data sources—such as PDFs, webpages, or internal knowledge bases—managed through the **Organization Console**.

It acts as a unified repository for your data, enabling seamless access and integration across:

* Multiple AI agents
* AI-powered workflows
* Organizational applications

Datastores allow you to reuse data across projects, eliminating the need to recreate sources repeatedly.

<Note>
  This reusability improves **consistency**, reduces **manual effort**, and saves **time and costs** when scaling your AI initiatives.
</Note>

Whether you're working with structured or unstructured data, datastores offer a scalable way to manage your organization’s knowledge corpus.

```mermaid theme={null}
flowchart TB
    DS[("DATA STORES")] --> SRC[("DATA SOURCES")]

    SRC --> FILES([Files])
    SRC --> WEBPAGES([Webpages])
    SRC --> TEXT([Text])

    FILES -->|Embeddings| VECTOR[(Vector DB)]
    WEBPAGES -->|Embeddings| VECTOR
    TEXT -->|Embeddings| VECTOR
```

***

## 🛠️ Steps to Add a Datastore

<Steps>
  <Step title="Step 1: Start Creating a New Datastore">
    * Navigate to the **AI Data Stores** section in the organization console
    * Click on **Create New Data Store**

    <Frame caption="AI Data Store: Create New DataStore">
      <img src="https://mintcdn.com/aptlytechnologies/PJxqOS6CrBAi41UF/images_new/orgconsole/createnewdstore.png?fit=max&auto=format&n=PJxqOS6CrBAi41UF&q=85&s=4d8991402d6e0337e4be813072cbc6ac" alt="Add New Datastore Button" width="2000" height="1066" data-path="images_new/orgconsole/createnewdstore.png" />
    </Frame>
  </Step>

  <Step title="Step 2: Add Datastore Details">
    * Fill in the following:
      * **Datastore Name**
      * **Description**
      * **Embedding Model**
    * Click **Add Datastore** to finalize

    <Frame caption="AI Data Store: Add Datastore Details">
      <img src="https://mintcdn.com/aptlytechnologies/PJxqOS6CrBAi41UF/images_new/orgconsole/dsinfo.png?fit=max&auto=format&n=PJxqOS6CrBAi41UF&q=85&s=613d05c3490f6f34a2810b9fac266ce4" alt="Datastore Details Form" width="2000" height="1066" data-path="images_new/orgconsole/dsinfo.png" />
    </Frame>
  </Step>

  <Step title="Step 3: View Datastore in List">
    Once created, your datastore will appear in the organization’s list with embedding info and data stats.

    <Frame caption="AI Data Store: Datastore List">
      <img src="https://mintcdn.com/aptlytechnologies/PJxqOS6CrBAi41UF/images_new/orgconsole/dsview.png?fit=max&auto=format&n=PJxqOS6CrBAi41UF&q=85&s=190458466c004e630027e72b3c183165" alt="Datastore View List" width="2000" height="1066" data-path="images_new/orgconsole/dsview.png" />
    </Frame>
  </Step>
</Steps>

<Info>
  📌 **Note:**\
  While multiple datastores within the same project can use different **embedding models**, to **link a datastore with a agent**, both must use the **same embedding model**.
</Info>
