An open API service indexing awesome lists of open source software.

https://github.com/kjsahkjsdn/nuxt-llamaindex

Nuxt 3 + LlamaIndex Starter
https://github.com/kjsahkjsdn/nuxt-llamaindex

llama-index llama2 llama3 llama3-meta-ai llamaindex nuxt nuxt3

Last synced: 7 months ago
JSON representation

Nuxt 3 + LlamaIndex Starter

Awesome Lists containing this project

README

        

# Nuxt 3 + LlamaIndex Starter

Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.

## Setup

Make sure to install the dependencies:

```bash
pnpm install
```

## Development Server

Start the development server on `http://localhost:3000`:

```bash
pnpm run dev
```

## Production

Build the application for production:

```bash
pnpm run build
```

Locally preview production build:

```bash
pnpm run preview
```

## Environment Variables

To start the project we need to create a `.env` file in the root of the project. The file should contain the following:

```bash
MODEL=
OPENAI_API_KEY=
REPLICATE_API_TOKEN=
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.