CoolFace
Apppublic

uiynyny/llama3RAG

sourceHugging Faceupdated 3d agoView on Hugging Face
0likes
.env.example22 linesDownload Raw Back to root
1# Copy this file to .env and fill in your values.2 3# PostgreSQL database configuration for relational data queries4DB_HOST=your-rds-endpoint.amazonaws.com5DB_PORT=54326DB_NAME=postgres7DB_USER=postgres8DB_PASSWORD=your-password9 10# Pinecone vector store configuration11PINECONE_HOST=https://your-index-host.pinecone.io12PINECONE_INDEX_NAME=metabodb13PINECONE_API_KEY=your-pinecone-api-key14 15# OpenAI API configuration16OPENAI_API_KEY=your-openai-api-key17OPENAI_MODEL=gpt-4o-mini18 19# Optional OpenAI-compatible endpoint override20# OPENAI_BASE_URL=https://your-provider.example.com/v121# REQUEST_TIMEOUT=6022