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
- Host: GitHub
- URL: https://github.com/kjsahkjsdn/nuxt-llamaindex
- Owner: kjsahkjsdn
- Created: 2024-05-04T00:42:09.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-07T20:34:14.000Z (about 1 year ago)
- Last Synced: 2024-11-28T09:39:25.711Z (8 months ago)
- Topics: llama-index, llama2, llama3, llama3-meta-ai, llamaindex, nuxt, nuxt3
- Language: Vue
- Homepage:
- Size: 5.92 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.