This is a sample application that demonstrates how to use the Upstash Vector database with the OpenAI API to build a chatbot that can answer questions about Laravel.
It ingests the Laravel documentation from the GitHub repository, breaks the documentation into chunks and stores them in our Vector database.
The chatbot then uses the Vector database to answer questions about the documentation.
- Tailwind CSS
- Alpine.js
- Laravel
- Livewire
- Upstash Vector
- OpenAI
- Clone the repository
- Install dependencies with
composer install
- Create an account on Upstash and a Vector index.
- Copy the
.env.example
file to.env
and fill in the required environment variables. - Run
php artisan app:ingest:documentation
to populate the database with the documentation.
- Run the application with
php artisan serve
- Open your browser and navigate to
http://localhost:8000