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

# Quickstart

> Get started with Vectorify in minutes

The Vectorify Laravel package integrates your Laravel application with Vectorify to make your Laravel model data accessible by AI. The package automates the process of extracting, transforming, and synchronizing your application's data with Vectorify.

## Install

Install the package using Composer:

```bash theme={null}
composer require vectorifyai/vectorify-laravel
```

## Configure

Publish the configuration file and enter the tables and columns you want to be accessible by AI into the `config/vectorify.php` file. See the [configuration](configuration) page for more details.

```bash theme={null}
php artisan vendor:publish --tag=vectorify
```

Don't forget to add your Vectorify API key in your `.env` file:

```bash theme={null}
VECTORIFY_API_KEY=your_api_key_here
```

## Send

Send your data to Vectorify using the provided `vectorify:upsert` artisan command:

```bash theme={null}
php artisan vectorify:upsert
```

## Chat

Finally, chat with your data from the [Chats](https://app.vectorify.ai) page or embed a [Chatbot](https://app.vectorify.ai) into your Laravel application.
