mirror of
https://github.com/run-llama/ai-chatbot.git
synced 2026-06-30 21:27:54 -04:00
15 lines
565 B
Bash
15 lines
565 B
Bash
# Get your OpenAI API Key here: https://platform.openai.com/account/api-keys
|
|
OPENAI_API_KEY=****
|
|
|
|
# Generate a random secret: https://generate-secret.vercel.app/32 or `openssl rand -base64 32`
|
|
AUTH_SECRET=****
|
|
|
|
# The following keys below are automatically created and
|
|
# added to your environment when you deploy on vercel
|
|
|
|
# Instructions to create a Vercel Blob Store here: https://vercel.com/docs/storage/vercel-blob
|
|
BLOB_READ_WRITE_TOKEN=****
|
|
|
|
# Instructions to create a database here: https://vercel.com/docs/storage/vercel-postgres/quickstart
|
|
POSTGRES_URL=****
|